import React from 'react';
import { View, Text, StyleSheet, ScrollView } from 'react-native';
const BottomSheet = ({ children }) => {
return (
<View style={styles.container}>
<ScrollView style={styles.scrollView}>
{children}
</ScrollView>
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'white',
},
scrollView: {
width: '100%',
maxHeight: '50%', // 可根据需要调整高度
},
});
export default BottomSheet;
这个代码实例展示了如何在React Native应用中创建一个可滚动的底部抽屉组件。它使用了ScrollView
组件来实现内容的滚动,并通过StyleSheet
设置了容器和滚动视图的样式。这个组件可以接收任何子元素,并以弹出层的形式呈现,通常用于显示更多选项或详细信息。