update customer list

This commit is contained in:
tzw
2024-01-29 17:18:23 +06:30
parent bb5a162a2b
commit c9680ca3ca
6 changed files with 59 additions and 41 deletions

View File

@@ -133,6 +133,7 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
onChanged: _updateInputInch,
textAlign: TextAlign.center,
controller: inchInputController,
cursorColor: primaryColor,
keyboardType: TextInputType.numberWithOptions(
signed: false, decimal: true),
decoration: new InputDecoration(
@@ -176,7 +177,7 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
)
],
);
final feetBox = Column(
final feetBox = Column(
children: [
Text("Feet"),
Row(
@@ -188,6 +189,7 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
controller: feetInputController,
keyboardType: TextInputType.numberWithOptions(
signed: false, decimal: true),
cursorColor: primaryColor,
decoration: new InputDecoration(
contentPadding: EdgeInsets.all(10),
isDense: true,
@@ -286,7 +288,7 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Padding(
padding: const EdgeInsets.only(top: 8.0, left: 8),
padding: const EdgeInsets.only(top: 8.0, left: 15),
child: LocalText(
context,
"inch",