import 'package:flutter/material.dart'; class NotesScreen extends StatelessWidget { const NotesScreen({super.key}); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Bloco de Notas'), ), body: const Center( child: Text('Bloco de Notas - Em desenvolvimento'), ), ); } }