Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
bottomSheet
visible
boolean
false
onDismiss
skipPartiallyExpanded
() => void
style
StyleProperties
children
ReactNode
key
string | number
class
string
const [visible, setVisible] = useState(false); <column> <button text="Open filters" onClick={() => setVisible(true)} /> <bottomSheet visible={visible} skipPartiallyExpanded onDismiss={() => setVisible(false)} style={{ padding: 20 }} > <column style={{ spacing: 16 }}> <text style={{ fontSize: 20, fontWeight: 700 }}>Filters</text> <button text="Apply" onClick={() => setVisible(false)} /> </column> </bottomSheet> </column>