diff --git a/lib/navigation.dart b/lib/navigation.dart index 80bbc5f..147b894 100644 --- a/lib/navigation.dart +++ b/lib/navigation.dart @@ -29,9 +29,6 @@ class _NavigationState extends State { @override Widget build(BuildContext context) { return Scaffold( - appBar: AppBar( - title: Text("BottomNavBar"), - ), body: Center(child: _widgetOptions.elementAt(_selectedIndex)), bottomNavigationBar: BottomNavigationBar( items: const [ diff --git a/lib/pages/CreateNewNote.dart b/lib/pages/CreateNewNote.dart new file mode 100644 index 0000000..7d2ca8d --- /dev/null +++ b/lib/pages/CreateNewNote.dart @@ -0,0 +1,19 @@ +import 'package:flutter/material.dart'; + +class CreateNewNote extends StatefulWidget { + const CreateNewNote({super.key}); + + @override + State createState() => _CreateNewNoteState(); +} + +class _CreateNewNoteState extends State { + @override + Widget build(BuildContext context) { + return const Scaffold( + body: Center( + child: Text('CreateNewNote'), + ) + ); + } +} \ No newline at end of file