Fixed buttons not clickable on iOS
This commit is contained in:
parent
645115cb78
commit
cb1aa8bcf2
1 changed files with 7 additions and 7 deletions
|
@ -75,6 +75,13 @@ class AnimatedBottomBar extends React.Component<Props, State> {
|
||||||
ref={this.ref}
|
ref={this.ref}
|
||||||
style={styles.container}>
|
style={styles.container}>
|
||||||
<Surface style={styles.surface}>
|
<Surface style={styles.surface}>
|
||||||
|
<View style={styles.fabContainer}>
|
||||||
|
<FAB
|
||||||
|
style={styles.fab}
|
||||||
|
icon="account-clock"
|
||||||
|
onPress={() => this.props.navigation.navigate('group-select')}
|
||||||
|
/>
|
||||||
|
</View>
|
||||||
<View style={{flexDirection: 'row'}}>
|
<View style={{flexDirection: 'row'}}>
|
||||||
<IconButton
|
<IconButton
|
||||||
icon={this.displayModeIcons[this.state.currentMode]}
|
icon={this.displayModeIcons[this.state.currentMode]}
|
||||||
|
@ -86,13 +93,6 @@ class AnimatedBottomBar extends React.Component<Props, State> {
|
||||||
style={{marginLeft: 5}}
|
style={{marginLeft: 5}}
|
||||||
onPress={() => this.props.onPress('today', undefined)}/>
|
onPress={() => this.props.onPress('today', undefined)}/>
|
||||||
</View>
|
</View>
|
||||||
<View style={styles.fabContainer}>
|
|
||||||
<FAB
|
|
||||||
style={styles.fab}
|
|
||||||
icon="account-clock"
|
|
||||||
onPress={() => this.props.navigation.navigate('group-select')}
|
|
||||||
/>
|
|
||||||
</View>
|
|
||||||
<View style={{flexDirection: 'row'}}>
|
<View style={{flexDirection: 'row'}}>
|
||||||
<IconButton
|
<IconButton
|
||||||
icon="chevron-left"
|
icon="chevron-left"
|
||||||
|
|
Loading…
Reference in a new issue