Files
rkm_educa_prof_app/lib/telas/tela_notas.dart
2023-11-30 12:21:37 -03:00

26 lines
595 B
Dart

import 'package:flutter/material.dart';
import '../componentes/appbar_custom.dart';
import '../componentes/drawer_custom.dart';
class TelaNotas extends StatefulWidget {
List dados;
TelaNotas({
required this.dados
});
@override
State<TelaNotas> createState() => _TelaNotasState();
}
class _TelaNotasState extends State<TelaNotas> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBarCustom().appbar(context, 'LANÇAMENTO DE NOTAS'),
drawer: DrawerCustom(dados: widget.dados,),
body: Center(child: Text('notas'),),
);
}
}