ajustes nos dados do contatos

This commit is contained in:
Reginaldo
2023-06-21 15:07:02 -03:00
parent 2d5722f0d6
commit 9eb271c905
7 changed files with 80 additions and 53 deletions

View File

@@ -9,7 +9,6 @@ class TextCustom extends StatelessWidget {
final fontWeight;
final textAlign;
final maxLines;
final underscore;
TextCustom({
required this.text,
@@ -18,7 +17,6 @@ class TextCustom extends StatelessWidget {
this.fontWeight = FontWeight.normal,
this.textAlign = TextAlign.start,
this.maxLines = 1,
this.underscore,
});
@override
@@ -32,9 +30,9 @@ class TextCustom extends StatelessWidget {
color: color,
fontSize: size,
fontWeight: fontWeight,
decoration: underscore,
decorationThickness: 4,
fontFamily: 'Nunito'
fontFamily: 'Nunito',
decoration: TextDecoration.none
),
maxLines: maxLines,
);