notes/lib/main.dart

115 lines
2.9 KiB
Dart
Raw Normal View History

2022-10-29 18:06:20 +00:00
import 'package:flutter/foundation.dart';
2022-10-23 13:50:44 +00:00
import 'package:flutter/material.dart';
import 'package:notes/collapse_drawer.dart';
2022-10-23 13:50:44 +00:00
import 'package:notes/all_notes_page.dart';
2022-10-24 10:27:38 +00:00
import 'package:notes/canvas/drawing_page.dart';
import 'package:sqflite/sqflite.dart';
2022-10-29 18:06:20 +00:00
import 'package:sqflite_common_ffi/sqflite_ffi.dart';
2022-10-23 13:50:44 +00:00
void main() {
2022-10-29 18:06:20 +00:00
if (defaultTargetPlatform != TargetPlatform.android &&
defaultTargetPlatform != TargetPlatform.iOS) {
sqfliteFfiInit();
databaseFactory = databaseFactoryFfi;
2022-10-29 18:06:20 +00:00
}
2022-10-23 13:50:44 +00:00
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(
2022-10-24 00:02:35 +00:00
floatingActionButton: _fab(),
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
],
),
);
}
2022-10-24 00:02:35 +00:00
Widget _fab() {
switch (activePage) {
case View.all:
case View.folders:
return FloatingActionButton(
onPressed: () {
final now = DateTime.now();
String filename =
'note-${now.year}_${now.month}_${now.day}-${now.hour}_${now.minute}.dbnote';
2022-10-24 00:02:35 +00:00
Navigator.push(
context,
MaterialPageRoute(
2022-10-29 18:06:20 +00:00
builder: (context) => DrawingPage(filePath: filename),
2022-10-24 00:02:35 +00:00
),
);
},
backgroundColor: const Color(0xff3f3f3f),
child: const Icon(Icons.edit_calendar_outlined, color: Colors.orange),
);
default:
return Container();
}
}
2022-10-23 13:50:44 +00:00
Widget _buildPage() {
switch (activePage) {
case View.all:
return const AllNotesPage();
case View.shared:
return const Text(
2022-10-24 00:02:35 +00:00
'shared notebooks WIP',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
case View.recycle:
return const Text(
2022-10-24 00:02:35 +00:00
'recycle bin WIP',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
case View.folders:
return const Text(
2022-10-24 00:02:35 +00:00
'Folders WIP',
style: TextStyle(color: Colors.white),
);
2022-10-23 13:50:44 +00:00
}
}
}