Fixed buttons not clickable on iOS
这个提交包含在:
父节点
645115cb78
当前提交
cb1aa8bcf2
共有 1 个文件被更改,包括 7 次插入 和 7 次删除
|
@ -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"
|
||||
|
|
正在加载…
在新工单中引用