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:
@ -269,15 +269,15 @@ class _AddOptionButton extends StatelessWidget {
|
|||||||
class _CreateOptionTextField extends StatefulWidget {
|
class _CreateOptionTextField extends StatefulWidget {
|
||||||
final PopoverMutex? popoverMutex;
|
final PopoverMutex? popoverMutex;
|
||||||
const _CreateOptionTextField({
|
const _CreateOptionTextField({
|
||||||
super.key,
|
Key? key,
|
||||||
this.popoverMutex,
|
this.popoverMutex,
|
||||||
});
|
}) : super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<_CreateOptionTextField> createState() => __CreateOptionTextFieldState();
|
State<_CreateOptionTextField> createState() => _CreateOptionTextFieldState();
|
||||||
}
|
}
|
||||||
|
|
||||||
class __CreateOptionTextFieldState extends State<_CreateOptionTextField> {
|
class _CreateOptionTextFieldState extends State<_CreateOptionTextField> {
|
||||||
late final FocusNode _focusNode;
|
late final FocusNode _focusNode;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
Reference in New Issue
Block a user