File tree Expand file tree Collapse file tree 4 files changed +18
-10
lines changed
Expand file tree Collapse file tree 4 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ export default class LayoutExample extends Component {
2121 return (
2222 <Container >
2323 <Header />
24- <Grid >
25- {% raw %}<Col style={{ backgroundColor: '#635DB7', height: 200 }}></Col >{% endraw %}
26- {% raw %}<Col style={{ backgroundColor: '#00CE9F', height: 200 }}></Col >{% endraw %}
27- </Grid >
24+ <Grid >
25+ {% raw %}<Col style={{ backgroundColor: '#635DB7', height: 200 }}></Col >{% endraw %}
26+ {% raw %}<Col style={{ backgroundColor: '#00CE9F', height: 200 }}></Col >{% endraw %}
27+ </Grid >
2828 </Container >
2929 );
3030 }
Original file line number Diff line number Diff line change @@ -81,6 +81,14 @@ export default {
8181 </tr>
8282 </thead>
8383 <tbody>
84+ <tr>
85+ <td>scrollWithoutAnimation</td>
86+ <td> false </td>
87+ <td> boolean </td>
88+ <td>
89+ Disable Tab Change Animation
90+ </td>
91+ </tr>
8492 <tr>
8593 <td>locked</td>
8694 <td> false </td>
Original file line number Diff line number Diff line change @@ -67,11 +67,11 @@ export default class Application extends React.Component {
6767 }
6868 async componentWillMount() {
6969 this.populateList();
70- await Expo.Font.loadAsync({
71- 'Roboto': require('native-base/Fonts/Roboto.ttf'),
72- 'Roboto_medium': require('native-base/Fonts/Roboto_medium.ttf'),
73- });
74- this.setState({isReady: true});
70+ await Expo.Font.loadAsync({
71+ 'Roboto': require('native-base/Fonts/Roboto.ttf'),
72+ 'Roboto_medium': require('native-base/Fonts/Roboto_medium.ttf'),
73+ });
74+ this.setState({isReady: true});
7575 }
7676 renderSectionHeader(sectionData, sectionID) {
7777 return (
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Inside this folder we make 3 folders:
3737
3838## HomeScreen
3939
40- This is going to be the first landing screen of out App. We are going to implement the navigation logic here.<br />
40+ This is going to be the first landing screen of our App. We are going to implement the navigation logic here.<br />
4141For our purpose here, we have used ** DrawerNavigator** for navigation through the entire app.<br />
4242Further screens will have ** nested navigators** in them. <br />
4343Go ahead and add the following file in your project. <br />
You can’t perform that action at this time.
0 commit comments