属性 | 类型 | 描述 |
---|---|---|
bottomsheet | Widget | 底部显示组件建议放 Container容器组件 |
backgroundColor | Color | 背景颜色 |
elevation | double | 阴影 |
persistent | bool | 执着的,是否一直显示 |
shape | ShapeBorder | 形状 |
clipBehavior | Clip | 剪辑行为 |
barrierColor | Color | 屏障颜色 |
ignoreSafeArea | bool | 忽略安全区 |
isScrollControlled | bool | 是滚动控制的 |
useRootNavigator | bool | 使用根导航器 |
isDismissible | bool | 被驳回 |
enableDrag | bool | 启用拖动 |
settings | RouteSettings | 设置 |
enterBottomSheetDuration | Duration | 输入底部工作表持续时间 |
exitBottomSheetDuration | Duration | 退出底部工作表持续时间 |
使用实例
Get.bottomSheet(
Container(
height: 300,
color: Colors.white,
),
);
THE END