forked from vergnet/application-amicale
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}
|
||||
style={styles.container}>
|
||||
<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'}}>
|
||||
<IconButton
|
||||
icon={this.displayModeIcons[this.state.currentMode]}
|
||||
|
@ -86,13 +93,6 @@ class AnimatedBottomBar extends React.Component<Props, State> {
|
|||
style={{marginLeft: 5}}
|
||||
onPress={() => this.props.onPress('today', undefined)}/>
|
||||
</View>
|
||||
<View style={styles.fabContainer}>
|
||||
<FAB
|
||||
style={styles.fab}
|
||||
icon="account-clock"
|
||||
onPress={() => this.props.navigation.navigate('group-select')}
|
||||
/>
|
||||
</View>
|
||||
<View style={{flexDirection: 'row'}}>
|
||||
<IconButton
|
||||
icon="chevron-left"
|
||||
|
|
Loading…
Reference in a new issue