criada as telas register_home_screen.dart, register_individual_screen.dart e splash_screen.dart

This commit is contained in:
Reginaldo
2023-03-27 16:34:47 -03:00
parent 13e9eb4b24
commit f89efd285e
13 changed files with 1840 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ class DropdownWithSubtitle extends StatelessWidget {
double widthContainerDropdown;
List<String> list;
var onChanged;
Color colorBorder;
DropdownWithSubtitle({
required this.subtitle,
@@ -24,6 +25,7 @@ class DropdownWithSubtitle extends StatelessWidget {
required this.hintDropdown,
required this.onChanged,
required this.list,
this.colorBorder = ColorPalette.black54,
});
@override
@@ -47,7 +49,7 @@ class DropdownWithSubtitle extends StatelessWidget {
Container(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
border: Border.all(color: ColorPalette.black54)
border: Border.all(color: colorBorder)
),
margin: EdgeInsets.symmetric(horizontal: 5),
padding: EdgeInsets.symmetric(horizontal: 2),