This commit is contained in:
lama137
2023-09-28 09:02:52 +02:00
committed by Joe Küng
parent 9b3634e1cd
commit 1ff2e9da0a
7 changed files with 19 additions and 17 deletions

View File

@@ -7,12 +7,6 @@ class Database{
Database._init(); Database._init();
Future<Database> get database async {
if (_database != null) return _database!;
_database = await _initDB('database.db');
return _database!;
}
Future _createDB(Database database) async{ Future _createDB(Database database) async{
const integerPrimaryKeyAutoincrement = 'INTEGER PRIMARY KEY AUTOINCREMENT'; const integerPrimaryKeyAutoincrement = 'INTEGER PRIMARY KEY AUTOINCREMENT';

View File

@@ -1,6 +1,6 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'myApp.dart'; import '../myApp.dart';
void main() { void main() {
runApp(MyApp()); runApp(MyApp());
} }

View File

@@ -8,4 +8,7 @@ class Note extends BaseEntity {
static String creationDate = BaseEntity.getCreationDate; static String creationDate = BaseEntity.getCreationDate;
static String lastModificationDate = BaseEntity.getLastEditDate; static String lastModificationDate = BaseEntity.getLastEditDate;
static String description = ''; static String description = '';
Map<String, dynamic> toMap() {
return {'id': id, 'title': title, 'desc': description,'CreationDate': creationDate, 'lastM': lastModificationDate };
}
} }

View File

@@ -1,5 +1,3 @@
import 'dart:ffi';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'pages/testUI.dart'; import 'pages/testUI.dart';
import 'pages/TodayView.dart'; import 'pages/TodayView.dart';

View File

@@ -10,10 +10,16 @@ class InboxView extends StatefulWidget {
class _InboxViewState extends State<InboxView> { class _InboxViewState extends State<InboxView> {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return const Scaffold( return Scaffold(
body: Center( appBar: AppBar(
child: Icon(Icons.inbox), title: const Text('Inbox'),
) ),
floatingActionButton: FloatingActionButton(
onPressed: () {
},
child: Icon(Icons.add),
),
); );
} }
} }

View File

@@ -13,7 +13,9 @@ class _NotesViewState extends State<NotesView> {
return const Scaffold( return const Scaffold(
body: Center( body: Center(
child: Icon(Icons.note), child: Icon(Icons.note),
) ),
); );
} }
} }

View File

@@ -8,12 +8,11 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:progetto_m335_flutter/myApp.dart'; import 'package:progetto_m335_flutter/main.dart';
void main() { void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async { testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame. // Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
// Verify that our counter starts at 0. // Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget); expect(find.text('0'), findsOneWidget);