1import '/core/router/routes.dart';
2import '/core/ui/widgets/custom_scaffold.dart';
3import '/features/monthly_footprint/presentation/screens/widgets/cartoon_tracker.dart';
4import '/features/monthly_footprint/presentation/screens/widgets/emission_tracker_widget.dart';
5import 'package:fl_chart/fl_chart.dart';
6import 'package:flutter/material.dart';
7import 'package:flutter_screenutil/flutter_screenutil.dart';
8import 'package:go_router/go_router.dart';
9import 'package:hugeicons/hugeicons.dart';
15 Widget
build(BuildContext context) {
16 return CustomScaffold(
17 title:
'My Footprint',
21 context.push(
Routes.co2emissions.route);
23 icon:
const Icon(HugeIcons.strokeRoundedDatabase01),
27 context.push(
Routes.monthlyFootprintStats.route);
29 icon:
const Icon(HugeIcons.strokeRoundedPieChart),
33 child: SingleChildScrollView(
39 crossAxisAlignment: CrossAxisAlignment.center,
40 mainAxisAlignment: MainAxisAlignment.center,
48 SizedBox(height: 15.sp),
63 onCategorySelected: (index) {},
65 SizedBox(height: 15.sp),
68 style: ElevatedButton.styleFrom(
80 'Access the complete PDF document of your footprint analysis',
81 style: Theme.of(context).textTheme.bodySmall?.copyWith(
82 color: Theme.of(context).colorScheme.onPrimary,
88 icon: Icon(HugeIcons.strokeRoundedDownloadCircle01),
93 SizedBox(height: 20.sp),
95 'You can improve your footprint by 15% ',
96 style: Theme.of(context).textTheme.bodySmall,
98 SizedBox(height: 10.sp),
100 "Your carbon footprint of 158,909 kg CO₂\nequals driving 827,651 km.\nSmall changes can greatly reduce your impact!",
101 textAlign: TextAlign.center,
102 style: Theme.of(context).textTheme.bodySmall?.copyWith(
103 color: Theme.of(context).hintColor,