1import 'package:flutter/material.dart';
2import 'package:flutter_screenutil/flutter_screenutil.dart';
3import '../../../../../core/ui/widgets/custom_text_form_field.dart';
4import '../../widgets/step_brogress_bar.dart';
5import '/core/ui/widgets/custom_card.dart';
11 Widget
build(BuildContext context) {
12 return SingleChildScrollView(
15 crossAxisAlignment: CrossAxisAlignment.start,
18 width:
double.infinity,
20 decoration: BoxDecoration(
21 color: Colors.orange.withOpacity(0.11),
22 borderRadius: BorderRadius.circular(10),
27 style: Theme.of(context)
30 ?.copyWith(
color: Colors.orange),
34 SizedBox(height: 10.sp),
38 crossAxisAlignment: CrossAxisAlignment.start,
44 SizedBox(height: 10.sp),
46 'What Percentage Of Your Waste Is?',
47 style: Theme.of(context).textTheme.displaySmall?.copyWith(
51 SizedBox(height: 20.sp),
54 'Food Waste (E.G., Preparation Scraps, Plate Leftovers, Unsold Products):',
56 SizedBox(height: 15.sp),
59 'Packaging Waste (E.G., Plastic, Paper, Glass):',
61 SizedBox(height: 15.sp),
64 'Other (E.G., Cleaning Materials, General Trash):',
76 crossAxisAlignment: CrossAxisAlignment.start,
80 style: Theme.of(context).textTheme.bodySmall,
82 SizedBox(height: 10.sp),
85 fillColor: Theme.of(context).highlightColor.withOpacity(0.11),
87 padding: EdgeInsets.only(top: 13.sp, right: 10.sp),
90 style: Theme.of(context).textTheme.bodySmall?.copyWith(
91 color: Theme.of(context).colorScheme.primary,