我想滚动视图并始终在底部有一个粘性按钮。
所以要求是:
ScrollView
中包含项目。 这是我的代码:
<ScrollView >
<TouchableOpacity s>
<Image source={..)} />
</TouchableOpacity>
<TouchableOpacity>
<Image source={..)} />
</TouchableOpacity>
<TouchableOpacity>
<Image source={..)} />
</TouchableOpacity>
</ScrollView>
<View style={styles.fabMenuStyle}>
<Image source={..)} />
<Image source={..)} />
<Image source={..)} />
</View>
fabMenuStyle: {
flexDirection: 'row',
position: 'absolute',
bottom: 5,
justifyContent: 'center'
}
问题是我可以将按钮视图放置在ScrollView
的底部,但我需要使按钮视图始终在底部可见,而不仅仅是在ScrollView
的末尾。 / p>
答案 0 :(得分:0)
您好,只需将这种样式用于fabMenuStyle:
fabMenuStyle: {
flexDirection: 'row',
flex:1
justifyContent: 'center',
alignItems:'flex-end'
}