26 lines
595 B
Dart
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'),),
|
|
);
|
|
}
|
|
}
|