import { BottomSheet, useBottomSheet } from '@/components/ui/bottom-sheet'; import { Button } from '@/components/ui/button'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React from 'react'; export function BottomSheetSnapPoints() { const { isVisible, open, close } = useBottomSheet(); return ( Multiple Snap Points This sheet has four different snap points: 20%, 50%, 80%, and 95% of screen height. Try dragging to see how it snaps to each position. Available heights: • 20% - Peek view • 50% - Medium height • 80% - Large view • 95% - Nearly fullscreen ); }