36 Widget
build(BuildContext context) {
37 return SingleChildScrollView(
40 crossAxisAlignment: CrossAxisAlignment.start,
43 width:
double.infinity,
45 decoration: BoxDecoration(
46 color: Colors.blue.withOpacity(0.11),
47 borderRadius: BorderRadius.circular(10),
52 style: Theme.of(context)
55 ?.copyWith(
color: Colors.blue),
59 SizedBox(height: 10.sp),
63 crossAxisAlignment: CrossAxisAlignment.start,
69 SizedBox(height: 10.sp),
71 'What Mode Of Transport Is Typically Used For Deliveries?',
72 style: Theme.of(context).textTheme.displaySmall?.copyWith(
77 '(Select All That Apply)',
78 style: Theme.of(context).textTheme.displaySmall?.copyWith(
79 color: Theme.of(context).hintColor,
83 SizedBox(height: 20.sp),
84 ...
options.map((option) => Padding(
85 padding:
const EdgeInsets.only(bottom: 10),
86 child: CustomOptionButton(
97 Theme.of(context).highlightColor.withOpacity(0.11),
98 controller: TextEditingController(),
const CustomCard({ super.key, required this.child, this.padding, this.bgColor, })