Skip to content

Commit 339e3d2

Browse files
style: rename class and fix constructor
1 parent fad02eb commit 339e3d2

File tree

1 file changed

+4
-4
lines changed
  • frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option

1 file changed

+4
-4
lines changed

frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/type_option/select_option.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,15 +269,15 @@ class _AddOptionButton extends StatelessWidget {
269269
class _CreateOptionTextField extends StatefulWidget {
270270
final PopoverMutex? popoverMutex;
271271
const _CreateOptionTextField({
272-
super.key,
272+
Key? key,
273273
this.popoverMutex,
274-
});
274+
}) : super(key: key);
275275

276276
@override
277-
State<_CreateOptionTextField> createState() => __CreateOptionTextFieldState();
277+
State<_CreateOptionTextField> createState() => _CreateOptionTextFieldState();
278278
}
279279

280-
class __CreateOptionTextFieldState extends State<_CreateOptionTextField> {
280+
class _CreateOptionTextFieldState extends State<_CreateOptionTextField> {
281281
late final FocusNode _focusNode;
282282

283283
@override

0 commit comments

Comments
 (0)