ajustado os dados do calendário;

do login com o cpf
This commit is contained in:
Reginaldo
2023-11-15 11:47:05 -03:00
parent 0e0ed5a51c
commit 4f08bdfd27
104 changed files with 475 additions and 183 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:rkm_educa_prof_app/componentes/text_custom.dart';
import '../utils/cores.dart';
class AppBarCustom{
@override
PreferredSize appbar(BuildContext context,String title) {
return PreferredSize(
preferredSize: Size.fromHeight(50),
child: AppBar(
backgroundColor: PaletaCores.appBar,
centerTitle: true,
title: TextCustom(text: title,color: Colors.white,fontWeight: FontWeight.bold,size: 20.0,),
),
);
}
}