mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
style: rename class and fix constructor
This commit is contained in:
parent
fad02eb09d
commit
339e3d242f
@ -269,15 +269,15 @@ class _AddOptionButton extends StatelessWidget {
|
||||
class _CreateOptionTextField extends StatefulWidget {
|
||||
final PopoverMutex? popoverMutex;
|
||||
const _CreateOptionTextField({
|
||||
super.key,
|
||||
Key? key,
|
||||
this.popoverMutex,
|
||||
});
|
||||
}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<_CreateOptionTextField> createState() => __CreateOptionTextFieldState();
|
||||
State<_CreateOptionTextField> createState() => _CreateOptionTextFieldState();
|
||||
}
|
||||
|
||||
class __CreateOptionTextFieldState extends State<_CreateOptionTextField> {
|
||||
class _CreateOptionTextFieldState extends State<_CreateOptionTextField> {
|
||||
late final FocusNode _focusNode;
|
||||
|
||||
@override
|
||||
|
Loading…
Reference in New Issue
Block a user