45 Widget
build(BuildContext context) {
46 return SingleChildScrollView(
49 crossAxisAlignment: CrossAxisAlignment.start,
52 width:
double.infinity,
54 decoration: BoxDecoration(
55 color: Colors.blue.withOpacity(0.11),
56 borderRadius: BorderRadius.circular(10),
61 style: Theme.of(context)
64 ?.copyWith(
color: Colors.blue),
68 SizedBox(height: 10.sp),
72 crossAxisAlignment: CrossAxisAlignment.start,
78 SizedBox(height: 10.sp),
80 'Do You Use Your Own Vehicles For Deliveries Or Business Operations?',
81 style: Theme.of(context).textTheme.displaySmall?.copyWith(
85 SizedBox(height: 20.sp),
87 padding:
const EdgeInsets.only(bottom: 10),
88 child: CustomOptionButton(
95 SizedBox(height: 20.sp),
97 '(If Yes) What Type Of Vehicles Do You Use For Deliveries And Business Operations?',
98 style: Theme.of(context).textTheme.displaySmall?.copyWith(
103 '(Select All That Apply)',
104 style: Theme.of(context).textTheme.displaySmall?.copyWith(
105 color: Theme.of(context).hintColor,
109 SizedBox(height: 20.sp),
111 padding:
const EdgeInsets.only(bottom: 10),
112 child: CustomOptionButton(
123 Theme.of(context).highlightColor.withOpacity(0.11),
124 controller: TextEditingController(),
const CustomCard({ super.key, required this.child, this.padding, this.bgColor, })