We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9bc2bc8 + 3c77899 commit a7dd6c6Copy full SHA for a7dd6c6
frontend/app_flowy/lib/plugins/board/presentation/card/board_select_option_cell.dart
@@ -87,24 +87,3 @@ class _BoardSelectOptionCellState extends State<BoardSelectOptionCell> {
87
super.dispose();
88
}
89
90
-
91
-class _SelectOptionDialog extends StatelessWidget {
92
- final GridSelectOptionCellController _controller;
93
- const _SelectOptionDialog({
94
- Key? key,
95
- required IGridCellController controller,
96
- }) : _controller = controller as GridSelectOptionCellController,
97
- super(key: key);
98
99
- @override
100
- Widget build(BuildContext context) {
101
- return SizedBox(
102
- child: InkWell(onTap: () {
103
- SelectOptionCellEditor.show(
104
- context: context,
105
- cellController: _controller,
106
- );
107
- }),
108
109
- }
110
-}
0 commit comments