1import '/features/dashboard/presentation/dashboard_screen/widgets/last_three_months_performance_card.dart';
2import '/features/dashboard/presentation/dashboard_screen/widgets/monthly_collection_performance_card.dart';
3import '/features/dashboard/presentation/dashboard_screen/widgets/this_month_earnings_card.dart';
4import 'package:flutter/material.dart';
5import 'package:flutter_screenutil/flutter_screenutil.dart';
6import '../../../domain/entities/dashboard_entity.dart';
17 Widget
build(BuildContext context) {
18 return SingleChildScrollView(
19 padding: EdgeInsets.symmetric(horizontal: 15.sp, vertical: 15.sp),
21 crossAxisAlignment: CrossAxisAlignment.start,
30 SizedBox(height: 10.sp),
32 earningActualMonth:
entity.earningActualMonth,
33 earningLastMonth:
entity.earningLastMonth,
35 SizedBox(height: 10.sp),
36 LastThreeMonthsPerformanceCard(
37 earningActualMonth:
entity.earningActualMonth,
38 earningLastMonth:
entity.earningLastMonth,
39 earningLastTwoMonth:
entity.earningLastTwoMonth,