Widget _buildBaseListStateActionSheet(BuildContext context) { return TDButton( text: '列表型选项状态', isBlock: true, type: TDButtonType.outline, theme: TDButtonTheme.primary, size: TDButtonSize.large, onTap: () { TDActionSheet( context, visible: true, items: [ TDActionSheetItem( label: '默认选项', ), TDActionSheetItem( label: '自定义选项', textStyle: TextStyle( color: TDTheme.of(context).brandNormalColor, ), ), TDActionSheetItem( label: '失效选项', disabled: true, ), TDActionSheetItem( label: '警告选项', textStyle: TextStyle( color: Colors.red, ), ), ], onSelected: (item, index) { print('选中了:${item.label}'); }, ); }, ); }