Files
progetto-m335-flutter/lib/pages/NotesView.dart
lama137 2f851bc630 IDK
2023-09-28 09:02:52 +02:00

22 lines
401 B
Dart

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),
),
);
}
}