Merge pull request #81 from lbryio/search-drawer-locked

keep navigation drawer locked in the closed state on the search screen
This commit is contained in:
akinwale 2018-04-23 17:23:37 +01:00 committed by GitHub
commit 21640e4264
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,7 @@ const discoverStack = StackNavigator({
Search: {
screen: SearchPage,
navigationOptions: ({ navigation }) => ({
drawerLockMode: 'locked-closed',
headerTitle: <SearchInput style={searchStyle.searchInput} />,
headerRight: <Feather name="x" size={24} style={discoverStyle.rightHeaderIcon} onPress={() => navigation.dispatch(NavigationActions.back())} />
})