criada as telas tela_avisos.dart, tela_detalhes_avisos.dart e tela_contatos.dart

This commit is contained in:
Reginaldo
2023-06-06 15:57:19 -03:00
parent 5c27265419
commit a40968fb1c
24 changed files with 438 additions and 207 deletions

View File

@@ -0,0 +1,19 @@
import 'package:flutter/material.dart';
import 'package:rkm_educa_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,),
),
);
}
}