finalizada a tela service_individual_screen.dart,

ajustada service_home_screen.dart
This commit is contained in:
Reginaldo
2023-03-28 19:48:23 -03:00
parent 407755e0ac
commit d7adeee9af
11 changed files with 1200 additions and 17 deletions

View File

@@ -14,6 +14,7 @@ class InputWithSubtitle extends StatelessWidget {
bool enable;
TextInputType textInputType;
int maxLines;
Color colorBorder;
InputWithSubtitle({
required this.subtitle,
@@ -26,6 +27,7 @@ class InputWithSubtitle extends StatelessWidget {
this.enable = true,
this.textInputType = TextInputType.text,
this.maxLines = 1,
this.colorBorder = ColorPalette.black54
});
@override
@@ -51,7 +53,8 @@ class InputWithSubtitle extends StatelessWidget {
label: labelInput,
enable: enable,
textInputType: textInputType,
maxLines:maxLines
maxLines:maxLines,
colorBorder: colorBorder,
),
Divider(color: ColorPalette.black54,height: 5,endIndent: 10,)
],