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

@@ -158,7 +158,7 @@ export default class ActionSheet extends Component {
};
_onScrollEndDrag = event => {
let {springOffset} = this.props;
let {springOffset, extraScroll} = this.props;
let verticalOffset = event.nativeEvent.contentOffset.y;
@@ -318,7 +318,6 @@ export default class ActionSheet extends Component {
style={[
{
width: '100%',
backgroundColor: 'white',
},
footerStyle,
{

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}

View File

@@ -256,7 +256,6 @@ export default class NoteItem extends React.Component {
justifyContent: 'center',
minHeight: 70,
alignItems: 'center',
paddingRight: ph,
}}>
<TouchableOpacity
style={{

View File

@@ -14,6 +14,8 @@ import {slideLeft, slideRight} from '../../utils/animations';
import {NotesPlaceHolder} from '../ListPlaceholders';
import NoteItem from '../NoteItem';
import SelectionWrapper from '../SelectionWrapper';
import {eSendEvent} from '../../services/eventManager';
import {eScrollEvent} from '../../services/events';
export const NotesList = ({isGrouped = false}) => {
const [state, dispatch] = useTracked();
@@ -58,7 +60,7 @@ export const NotesList = ({isGrouped = false}) => {
const _onScroll = event => {
if (!event) return;
y = event.nativeEvent.contentOffset.y;
let y = event.nativeEvent.contentOffset.y;
eSendEvent(eScrollEvent, y);
};

View File

@@ -100,9 +100,9 @@ const renderLogin = (colors, navigation) => {
return (
<View
style={{
justifyContent: 'center',
width: '80%',
height: '80%',
justifyContent: DDS.isTab ? 'center' : 'flex-start',
width: '100%',
height: DDS.isTab ? '80%' : '100%',
alignSelf: 'center',
}}>
<View>

View File

@@ -81,9 +81,9 @@ const renderSignup = colors => {
return (
<View
style={{
justifyContent: 'center',
width: '80%',
height: '80%',
justifyContent: DDS.isTab ? 'center' : 'flex-start',
width: '100%',
height: DDS.isTab ? '80%' : '100%',
alignSelf: 'center',
}}>
<View>