Primeiro commit no ramo main

This commit is contained in:
Reginaldo
2023-11-06 15:00:41 -03:00
commit e1df293d0c
96 changed files with 2992 additions and 0 deletions

30
lib/telas/tela_home.dart Normal file
View File

@@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
import '../componentes/drawer_custom.dart';
class TelaHome extends StatefulWidget {
List list;
TelaHome({
required this.list
});
@override
State<TelaHome> createState() => _TelaHomeState();
}
class _TelaHomeState extends State<TelaHome> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
elevation: 0,
backgroundColor: Colors.white,
iconTheme: IconThemeData(color: Colors.black),
),
drawer: DrawerCustom(usuario: widget.list[1]),
body: Center(
child: Text('home'),
),
);
}
}