Files
progetto-m335-flutter/lib/pages/NotesView.dart
lama137 1ff2e9da0a IDK
2023-09-29 15:26:17 +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),
),
);
}
}