ajustes no front e finalizado o salvamento dos dados no DB

This commit is contained in:
Reginaldo
2023-05-03 15:49:31 -03:00
parent 115c7a9d4c
commit 7ab1fa5ebd
11 changed files with 309 additions and 132 deletions

View File

@@ -5,6 +5,7 @@ import '../config/const_variable.dart';
class InputSearchText extends StatelessWidget {
var controller;
double fontSize;
double fontSizeHint;
String hint;
double width;
Color color;
@@ -15,6 +16,7 @@ class InputSearchText extends StatelessWidget {
required this.controller,
required this.width,
this.fontSize = 15.0,
this.fontSizeHint = 15.0,
this.hint = '',
this.color = ColorPalette.white,
this.border = true,
@@ -41,7 +43,7 @@ class InputSearchText extends StatelessWidget {
hintText: this.hint,
hintStyle: TextStyle(
color: Colors.black,
fontSize: this.fontSize,
fontSize: this.fontSizeHint,
)
)
),