criada a tela attendance_list_screen.dart, about_screen.dart e main_procedures_screen.dart

This commit is contained in:
Reginaldo
2023-03-22 18:41:27 -03:00
parent 954e5aa2bf
commit c52b66a312
13 changed files with 433 additions and 8 deletions

View File

@@ -7,18 +7,21 @@ class TextDefault extends StatelessWidget {
double fontSize;
Color color;
FontWeight fontWeigth;
TextAlign textAlign;
TextDefault({
required this.text,
this.fontSize = 20.0,
this.color = ColorPalette.gray,
this.fontWeigth = FontWeight.normal
this.fontWeigth = FontWeight.normal,
this.textAlign = TextAlign.start
});
@override
Widget build(BuildContext context) {
return Text(
text,
textAlign: textAlign,
style: TextStyle(
fontSize: fontSize,
fontWeight: fontWeigth,