Added many things:

- properly importing fonts with assets folders
- properly getting material icons with react-native-vector-icons
- figuring out how messages with display
- fixing keyboard bringing up other Views
- function for getting user input into TextInput
This commit is contained in:
Arjun Patel
2018-05-26 17:02:15 -07:00
parent 327911a8d5
commit 59a3bc7e7d
35 changed files with 292 additions and 36 deletions
+5 -4
View File
@@ -11,6 +11,7 @@ import {
import {
Actions
} from 'react-native-router-flux';
import { Fonts } from '../utils/Fonts.js';
// imported components for different sections in main component
import Navbar from './main/navbar.js';
@@ -45,16 +46,16 @@ const styles = {
container: {
flex: 18,
flexDirection: 'column',
justifyContent: 'space-between'
justifyContent: 'space-between',
position: 'relative'
},
navbar: {
flex: 2
},
chat: {
flex: 15,
backgroundColor: 'white'
flex: 15
},
adspace: {
flex: 1
flex: 2
}
}