inserido busca das disciplinas professores
This commit is contained in:
25
lib/telas/tela_notas.dart
Normal file
25
lib/telas/tela_notas.dart
Normal 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'),),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user