Skip to content

Commit

Permalink
Improve playground on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
brentvatne committed Jun 20, 2018
1 parent c518e7f commit 824fa32
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion examples/NavigationPlayground/js/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@ const ExampleRoutes = {
// screen: MultipleDrawer,
// },
StackWithCustomHeaderBackImage: StackWithCustomHeaderBackImage,
StackWithHeaderPreset: StackWithHeaderPreset,
...Platform.select({
ios: {
StackWithHeaderPreset: StackWithHeaderPreset,
},
android: {},
}),
StackWithTranslucentHeader: StackWithTranslucentHeader,
TabsInDrawer: TabsInDrawer,
CustomTabs: CustomTabs,
Expand Down
2 changes: 1 addition & 1 deletion examples/NavigationPlayground/js/SimpleTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const SimpleTabs = createBottomTabNavigator(
},
{
tabBarOptions: {
activeTintColor: Platform.OS === 'ios' ? '#e91e63' : '#fff',
activeTintColor: '#e91e63',
},
}
);
Expand Down

0 comments on commit 824fa32

Please sign in to comment.