add package sql search

This commit is contained in:
Sai Naw Wun
2021-01-24 22:51:00 +06:30
parent 9a19e7af08
commit 020b748272
5 changed files with 78 additions and 20 deletions

View File

@@ -153,16 +153,22 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
children: [
InkWell(
onTap: () => _addInc(1),
child: Icon(
Icons.add,
color: primaryColor,
child: Padding(
padding: const EdgeInsets.all(3.0),
child: Icon(
Icons.add,
color: primaryColor,
),
),
),
InkWell(
onTap: () => _addInc(-1),
child: Icon(
Icons.remove,
color: primaryColor,
child: Padding(
padding: const EdgeInsets.all(3.0),
child: Icon(
Icons.remove,
color: primaryColor,
),
),
)
],
@@ -199,16 +205,22 @@ class _LengthPickerDialogState extends State<LengthPickerDialog> {
children: [
InkWell(
onTap: () => _addFeet(1),
child: Icon(
Icons.add,
color: primaryColor,
child: Padding(
padding: const EdgeInsets.all(3.0),
child: Icon(
Icons.add,
color: primaryColor,
),
),
),
InkWell(
onTap: () => _addFeet(-1),
child: Icon(
Icons.remove,
color: primaryColor,
child: Padding(
padding: const EdgeInsets.all(3.0),
child: Icon(
Icons.remove,
color: primaryColor,
),
),
)
],