notes/lib/main.dart

85 lines
2.0 KiB
Dart
Raw Normal View History

2022-10-23 13:50:44 +00:00
import 'package:flutter/material.dart';
import 'package:notes/CollapseDrawer.dart';
import 'package:notes/all_notes_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// is not restarted.
primarySwatch: Colors.blue,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
View activePage = View.all;
@override
Widget build(BuildContext context) {
return Scaffold(
floatingActionButton: FloatingActionButton(
onPressed: () {},
backgroundColor: const Color(0xff3f3f3f),
child:
const Icon(Icons.edit_calendar_outlined, color: Colors.orange)),
2022-10-23 13:50:44 +00:00
body: Row(
children: [
CollapseDrawer(
onPageChange: (View newPage) =>
setState(() => activePage = newPage),
activePage: activePage,
),
2022-10-23 13:50:44 +00:00
Expanded(
child: Container(
color: const Color(0xff0d0d0d),
child: _buildPage(),
))
2022-10-23 13:50:44 +00:00
],
),
);
}
Widget _buildPage() {
switch (activePage) {
case View.all:
return const AllNotesPage();
case View.shared:
return const Text(
'Todo1',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
case View.recycle:
return const Text(
'Todo',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
case View.folders:
return const Text(
'Todo',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
}
}
}