38 Widget
build(BuildContext context) {
39 return SingleChildScrollView(
42 crossAxisAlignment: CrossAxisAlignment.start,
45 width:
double.infinity,
47 decoration: BoxDecoration(
48 color: Colors.blue.withOpacity(0.11),
49 borderRadius: BorderRadius.circular(10),
54 style: Theme.of(context)
57 ?.copyWith(
color: Colors.blue),
61 SizedBox(height: 10.sp),
65 crossAxisAlignment: CrossAxisAlignment.start,
71 SizedBox(height: 10.sp),
73 'What Are The Primary Uses Of Water In Your Operations?',
74 style: Theme.of(context).textTheme.displaySmall?.copyWith(
79 '(Select All That Apply)',
80 style: Theme.of(context).textTheme.displaySmall?.copyWith(
81 color: Theme.of(context).hintColor,
85 SizedBox(height: 20.sp),
86 ...
options.map((option) => Padding(
87 padding:
const EdgeInsets.only(bottom: 10),
88 child: CustomOptionButton(
99 Theme.of(context).highlightColor.withOpacity(0.11),
100 controller: TextEditingController(),
const CustomCard({ super.key, required this.child, this.padding, this.bgColor, })