fixed navigation and added create new note page
This commit is contained in:
@@ -29,9 +29,6 @@ class _NavigationState extends State<Navigation> {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
|
||||||
title: Text("BottomNavBar"),
|
|
||||||
),
|
|
||||||
body: Center(child: _widgetOptions.elementAt(_selectedIndex)),
|
body: Center(child: _widgetOptions.elementAt(_selectedIndex)),
|
||||||
bottomNavigationBar: BottomNavigationBar(
|
bottomNavigationBar: BottomNavigationBar(
|
||||||
items: const <BottomNavigationBarItem>[
|
items: const <BottomNavigationBarItem>[
|
||||||
|
|||||||
19
lib/pages/CreateNewNote.dart
Normal file
19
lib/pages/CreateNewNote.dart
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
|
class CreateNewNote extends StatefulWidget {
|
||||||
|
const CreateNewNote({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<CreateNewNote> createState() => _CreateNewNoteState();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _CreateNewNoteState extends State<CreateNewNote> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return const Scaffold(
|
||||||
|
body: Center(
|
||||||
|
child: Text('CreateNewNote'),
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user