Merge branch 'master' of github.com:rodrigok/Rocket.Chat.RN

This commit is contained in:
Rodrigo Nascimento 2017-08-08 23:27:26 -03:00
commit fddb18fb9f
2 changed files with 17 additions and 17 deletions

View File

@ -8,6 +8,23 @@ const styles = StyleSheet.create({
padding: 14,
flexDirection: 'row',
transform: [{ scaleY: -1 }]
},
avatar: {
backgroundColor: '#ccc',
width: 40,
height: 40,
marginRight: 10,
borderRadius: 5
},
texts: {
flex: 1
},
msg: {
flex: 1
},
username: {
fontWeight: 'bold',
marginBottom: 5
}
});

View File

@ -8,23 +8,6 @@ import RocketChat, { loadMessagesForRoom, sendMessage } from '../lib/meteor';
import Message from '../components/Message';
const styles = StyleSheet.create({
avatar: {
backgroundColor: '#ccc',
width: 40,
height: 40,
marginRight: 10,
borderRadius: 5
},
username: {
fontWeight: 'bold',
marginBottom: 5
},
texts: {
flex: 1
},
msg: {
flex: 1
},
container: {
flex: 1
},