You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
part of '../neon_notes.dart'; |
|
|
|
class NotesMainPage extends StatefulWidget { |
|
const NotesMainPage({ |
|
required this.bloc, |
|
super.key, |
|
}); |
|
|
|
final NotesBloc bloc; |
|
|
|
@override |
|
State<NotesMainPage> createState() => _NotesMainPageState(); |
|
} |
|
|
|
class _NotesMainPageState extends State<NotesMainPage> { |
|
late int _index = widget.bloc.options.defaultCategoryOption.value.index; |
|
|
|
@override |
|
void initState() { |
|
super.initState(); |
|
|
|
widget.bloc.errors.listen((final error) { |
|
handleNotesException(context, error); |
|
}); |
|
} |
|
|
|
@override |
|
Widget build(final BuildContext context) => Scaffold( |
|
resizeToAvoidBottomInset: false, |
|
bottomNavigationBar: BottomNavigationBar( |
|
currentIndex: _index, |
|
onTap: (final index) { |
|
setState(() { |
|
_index = index; |
|
}); |
|
}, |
|
items: [ |
|
BottomNavigationBarItem( |
|
icon: const Icon(Icons.note), |
|
label: AppLocalizations.of(context).notesNotes, |
|
), |
|
BottomNavigationBarItem( |
|
icon: const Icon(MdiIcons.tag), |
|
label: AppLocalizations.of(context).notesCategories, |
|
), |
|
], |
|
), |
|
body: _index == 0 |
|
? NotesView( |
|
bloc: widget.bloc, |
|
) |
|
: NotesCategoriesView( |
|
bloc: widget.bloc, |
|
), |
|
); |
|
}
|
|
|