Skip to content

Commit b1e9bee

Browse files
ShrutikaShrutika
authored andcommitted
2 parents 35ca244 + 4c9f598 commit b1e9bee

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

docs/components/Layout.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}

docs/components/tabs/Tabs.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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>

docs/examples/StickyHeaderExample.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 (

docs/examples/navigation/StackNavigationExample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 />
4141
For our purpose here, we have used **DrawerNavigator** for navigation through the entire app.<br />
4242
Further screens will have **nested navigators** in them. <br />
4343
Go ahead and add the following file in your project. <br />

0 commit comments

Comments
 (0)