inserido busca das disciplinas professores

This commit is contained in:
Reginaldo
2023-11-30 12:21:37 -03:00
parent a30a57ebdf
commit 8fc77f2adc
67 changed files with 185 additions and 70 deletions

25
lib/telas/tela_notas.dart Normal file
View File

@@ -0,0 +1,25 @@
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'),),
);
}
}