ajustado os dados do calendário;

do login com o cpf
This commit is contained in:
Reginaldo
2023-11-15 11:49:07 -03:00
parent 4f08bdfd27
commit a30a57ebdf
5 changed files with 67 additions and 77 deletions

View File

@@ -2,10 +2,10 @@ import 'package:flutter/material.dart';
import '../componentes/drawer_custom.dart';
class TelaHome extends StatefulWidget {
List list;
List dados;
TelaHome({
required this.list
required this.dados
});
@override
@@ -21,7 +21,7 @@ class _TelaHomeState extends State<TelaHome> {
backgroundColor: Colors.white,
iconTheme: IconThemeData(color: Colors.black),
),
drawer: DrawerCustom(usuario: widget.list[1]),
drawer: DrawerCustom(dados: widget.dados,),
body: Center(
child: Text('home'),
),