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

@@ -0,0 +1,28 @@
import 'package:flutter/material.dart';
class StatusCircle extends StatelessWidget {
final Color color;
final Widget icon;
final double size;
const StatusCircle({
super.key,
required this.color,
required this.icon,
this.size = 42, // ✅ smaller = card height reduced
});
@override
Widget build(BuildContext context) {
return Container(
width: size,
height: size,
decoration: BoxDecoration(
shape: BoxShape.circle,
border: Border.all(color: color, width: 3),
color: Colors.white,
),
child: Center(child: icon),
);
}
}