c6714f27创建于 7月6日历史提交
import React from 'react';
import { View, Text } from 'react-native';
import BottomSheet from '@react-native-ohos/bottom-sheet';

export default function BottomSheetDemo() {
  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <BottomSheet snapPoints={["25%", "50%"]} />
    </View>
  );
}