inizzializazione pagine

This commit is contained in:
Tito Arrigo
2023-09-27 14:02:53 +02:00
committed by Joe Küng
parent 0e12953383
commit 8363776e78
6 changed files with 83 additions and 4 deletions

19
lib/pages/NotesView.dart Normal file
View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
class NotesView extends StatefulWidget {
const NotesView({super.key});
@override
State<NotesView> createState() => _NotesViewState();
}
class _NotesViewState extends State<NotesView> {
@override
Widget build(BuildContext context) {
return const Scaffold(
body: Center(
child: Icon(Icons.note),
)
);
}
}