feat: add profit analysis page with monthly calendar view

Introduce a new profit analysis page featuring a monthly calendar view that displays daily profit/loss data. The page includes navigation controls to switch between months, loading states, and responsive design that adapts to both light and dark themes. Implements data fetching from asset service and visual indicators for profit trends.
This commit is contained in:
2026-04-06 00:08:00 +08:00
parent a1e56887e5
commit 40ed445ae5
4 changed files with 457 additions and 90 deletions

View File

@@ -1,5 +1,4 @@
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import '../../../../core/theme/app_color_scheme.dart';
import '../../../../core/theme/app_spacing.dart';
import '../../../../core/theme/app_theme.dart';
@@ -26,9 +25,7 @@ class LogoutButton extends StatelessWidget {
child: Center(
child: Text(
'退出登录',
style: GoogleFonts.inter(
fontSize: 14,
fontWeight: FontWeight.w600,
style: AppTextStyles.headlineMedium(context).copyWith(
color: AppColorScheme.down,
),
),