mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-25 06:13:12 +03:00
sadded safe area view
This commit is contained in:
parent
f145b32ad0
commit
6ba4c2e0a6
@ -1,5 +1,5 @@
|
|||||||
import React, { PureComponent } from 'react';
|
import React, { PureComponent } from 'react';
|
||||||
import { View } from 'react-native';
|
import { View, SafeAreaView } from 'react-native';
|
||||||
import ScrollableTabView from 'react-native-scrollable-tab-view';
|
import ScrollableTabView from 'react-native-scrollable-tab-view';
|
||||||
import { injectIntl } from 'react-intl';
|
import { injectIntl } from 'react-intl';
|
||||||
|
|
||||||
@ -23,12 +23,14 @@ class SearchResultScreen extends PureComponent {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<View style={styles.container}>
|
<View style={styles.container}>
|
||||||
<SearchInput
|
<SafeAreaView>
|
||||||
onChangeText={() => {}}
|
<SearchInput
|
||||||
handleOnModalClose={navigationGoBack}
|
onChangeText={() => {}}
|
||||||
placeholder={`#${tag}`}
|
handleOnModalClose={navigationGoBack}
|
||||||
editable={false}
|
placeholder={`#${tag}`}
|
||||||
/>
|
editable={false}
|
||||||
|
/>
|
||||||
|
</SafeAreaView>
|
||||||
<ScrollableTabView
|
<ScrollableTabView
|
||||||
style={globalStyles.tabView}
|
style={globalStyles.tabView}
|
||||||
renderTabBar={() => (
|
renderTabBar={() => (
|
||||||
|
Loading…
Reference in New Issue
Block a user