Disable the search screen (#6388)
This commit is contained in:
parent
196f922b6a
commit
b52b0c26b0
1 changed files with 4 additions and 3 deletions
|
|
@ -20,9 +20,10 @@ import Account from './account';
|
|||
import ChannelList from './channel_list';
|
||||
import RecentMentions from './recent_mentions';
|
||||
import SavedMessages from './saved_messages';
|
||||
import Search from './search';
|
||||
import TabBar from './tab_bar';
|
||||
|
||||
// import Search from './search';
|
||||
|
||||
import type {LaunchProps} from '@typings/launch';
|
||||
|
||||
if (Platform.OS === 'ios') {
|
||||
|
|
@ -117,11 +118,11 @@ export default function HomeScreen(props: HomeProps) {
|
|||
>
|
||||
{() => <ChannelList {...props}/>}
|
||||
</Tab.Screen>
|
||||
<Tab.Screen
|
||||
{/* <Tab.Screen
|
||||
name={Screens.SEARCH}
|
||||
component={Search}
|
||||
options={{unmountOnBlur: false, lazy: true, tabBarTestID: 'tab_bar.search.tab'}}
|
||||
/>
|
||||
/> */}
|
||||
<Tab.Screen
|
||||
name={Screens.MENTIONS}
|
||||
component={RecentMentions}
|
||||
|
|
|
|||
Loading…
Reference in a new issue