inserido icone android, logo,ajustada a tela home e login
This commit is contained in:
@@ -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,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user