update customer list
This commit is contained in:
@@ -51,6 +51,7 @@ class _DialogInputState extends State<DialogInput> {
|
||||
controller: _controller,
|
||||
focusNode: _focusNode,
|
||||
autofocus: true,
|
||||
cursorColor: primaryColor,
|
||||
keyboardType: TextInputType.numberWithOptions(decimal: true),
|
||||
decoration: new InputDecoration(
|
||||
focusedBorder: UnderlineInputBorder(
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user