fianace page has been made along with the work day card

This commit is contained in:
Daniah Ayad Al-sultani
2025-12-10 16:58:29 +03:00
parent 1055cd7877
commit 85b378ac37
10 changed files with 223 additions and 12 deletions

View File

@@ -1,19 +1,19 @@
import 'package:flutter/material.dart';
import '../widgets/work_day_card.dart';
class FinanceScreen extends StatelessWidget {
const FinanceScreen({super.key});
@override
Widget build(BuildContext context) {
return const Center(
child: Text(
'المالية',
style: TextStyle(
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
return ListView(
padding: const EdgeInsets.only(top: 20, bottom: 120),
children: const [
WorkDayCard(),
WorkDayCard(),
WorkDayCard(),
WorkDayCard(),
],
);
}
}
}