fix minor bugs

This commit is contained in:
ammarahm-ed
2020-01-26 22:15:08 +05:00
parent 6968c94e4f
commit e4b473595c
6 changed files with 47 additions and 53 deletions

View File

@@ -149,50 +149,44 @@ export const Container = ({
<SelectionHeader />
<Animatable.View
animation="fadeIn"
useNativeDriver={true}
duration={600}
delay={700}>
<Animatable.View
transition={['backgroundColor', 'opacity', 'height']}
duration={300}
style={{
position: 'absolute',
backgroundColor: colors.bg,
zIndex: 10,
height: selectionMode ? 0 : null,
opacity: selectionMode ? 0 : 1,
width: '100%',
}}>
<Header
menu
hide={hideHeader}
verticalMenu
showSearch={() => {
setHideHeader(false);
countUp = 0;
countDown = 0;
}}
colors={colors}
heading={'Home'}
canGoBack={false}
customIcon="menu"
/>
transition={['backgroundColor', 'opacity', 'height']}
duration={300}
style={{
position: 'absolute',
backgroundColor: colors.bg,
zIndex: 800,
height: selectionMode ? 0 : null,
opacity: selectionMode ? 0 : 1,
width: '100%',
}}>
<Header
menu
hide={hideHeader}
verticalMenu
showSearch={() => {
setHideHeader(false);
countUp = 0;
countDown = 0;
}}
colors={colors}
heading={'Home'}
canGoBack={false}
customIcon="menu"
/>
{data[0] ? (
<Search
clear={() => setText('')}
hide={hideHeader}
onChangeText={onChangeText}
onSubmitEditing={onSubmitEditing}
placeholder="Search your notes"
onBlur={onBlur}
onFocus={onFocus}
clearSearch={clearSearch}
value={text}
/>
) : null}
</Animatable.View>
{data[0] ? (
<Search
clear={() => setText('')}
hide={hideHeader}
onChangeText={onChangeText}
onSubmitEditing={onSubmitEditing}
placeholder="Search your notes"
onBlur={onBlur}
onFocus={onFocus}
clearSearch={clearSearch}
value={text}
/>
) : null}
</Animatable.View>
{children}