|
|
|
|
@ -194,9 +194,9 @@ class _CreateTRAFRequestPageState extends State<CreateTRAFRequestPage> {
|
|
|
|
|
backgroundColor: AppColor.fieldBgColor(context),
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle.copyWith(color: AppColor.textColor(context)),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
trafRequest?.censusQ1 = int.tryParse(value);
|
|
|
|
|
trafRequest?.censusQ1 = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
12.height,
|
|
|
|
|
@ -207,9 +207,9 @@ class _CreateTRAFRequestPageState extends State<CreateTRAFRequestPage> {
|
|
|
|
|
backgroundColor: AppColor.fieldBgColor(context),
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle.copyWith(color: AppColor.textColor(context)),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
trafRequest?.censusQ2 = int.tryParse(value);
|
|
|
|
|
trafRequest?.censusQ2 = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
12.height,
|
|
|
|
|
@ -220,9 +220,9 @@ class _CreateTRAFRequestPageState extends State<CreateTRAFRequestPage> {
|
|
|
|
|
backgroundColor: AppColor.fieldBgColor(context),
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle.copyWith(color: AppColor.textColor(context)),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
trafRequest?.censusQ3 = int.tryParse(value);
|
|
|
|
|
trafRequest?.censusQ3 = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
12.height,
|
|
|
|
|
@ -233,9 +233,9 @@ class _CreateTRAFRequestPageState extends State<CreateTRAFRequestPage> {
|
|
|
|
|
backgroundColor: AppColor.fieldBgColor(context),
|
|
|
|
|
labelStyle: AppTextStyles.textFieldLabelStyle.copyWith(color: AppColor.textColor(context)),
|
|
|
|
|
showShadow: false,
|
|
|
|
|
textInputType: TextInputType.number,
|
|
|
|
|
textInputType: TextInputType.text,
|
|
|
|
|
onChange: (value) {
|
|
|
|
|
trafRequest?.censusQ4 = int.tryParse(value);
|
|
|
|
|
trafRequest?.censusQ4 = value;
|
|
|
|
|
},
|
|
|
|
|
),
|
|
|
|
|
12.height,
|
|
|
|
|
|