inserido icone android, logo,ajustada a tela home e login

This commit is contained in:
Reginaldo
2023-03-22 14:56:39 -03:00
parent 25a5cb6f15
commit 954e5aa2bf
21 changed files with 390 additions and 86 deletions

View File

@@ -6,11 +6,13 @@ class TextDefault extends StatelessWidget {
String text;
double fontSize;
Color color;
FontWeight fontWeigth;
TextDefault({
required this.text,
required this.text,
this.fontSize = 20.0,
this.color = ColorPalette.border
this.color = ColorPalette.gray,
this.fontWeigth = FontWeight.normal
});
@override
@@ -19,7 +21,8 @@ class TextDefault extends StatelessWidget {
text,
style: TextStyle(
fontSize: fontSize,
color: color
fontWeight: fontWeigth,
color: color,
),
);
}