part of '../neon_notes.dart'; class NotesCreateNoteDialog extends StatefulWidget { const NotesCreateNoteDialog({ required this.bloc, this.category, super.key, }); final NotesBloc bloc; final String? category; @override State createState() => _NotesCreateNoteDialogState(); } class _NotesCreateNoteDialogState extends State { final formKey = GlobalKey(); final controller = TextEditingController(); String? selectedCategory; void submit() { if (formKey.currentState!.validate()) { Navigator.of(context).pop([controller.text, widget.category ?? selectedCategory]); } } @override Widget build(final BuildContext context) => ResultBuilder>( stream: widget.bloc.notes, builder: (final context, final notes) => CustomDialog( title: Text(AppLocalizations.of(context).notesCreateNote), children: [ Form( key: formKey, child: Column( crossAxisAlignment: CrossAxisAlignment.end, children: [ TextFormField( autofocus: true, controller: controller, decoration: InputDecoration( hintText: AppLocalizations.of(context).notesNoteTitle, ), validator: (final input) => validateNotEmpty(context, input), onFieldSubmitted: (final _) { submit(); }, ), if (widget.category == null) ...[ Center( child: ExceptionWidget( notes.error, onRetry: widget.bloc.refresh, ), ), Center( child: CustomLinearProgressIndicator( visible: notes.loading, ), ), if (notes.data != null) ...[ NotesCategorySelect( categories: notes.data!.map((final note) => note.category).toSet().toList(), onChanged: (final category) { selectedCategory = category; }, onSubmitted: submit, ), ], ], ElevatedButton( onPressed: submit, child: Text(AppLocalizations.of(context).notesCreateNote), ), ], ), ), ], ), ); }