feat: implement staff availability, clock-in, payments and fix UI navigation

This commit is contained in:
Suriya
2026-01-30 21:46:44 +05:30
parent 56aab9e1f6
commit ac7874c634
55 changed files with 1373 additions and 463 deletions

View File

@@ -23,7 +23,7 @@ class GetStartedBackground extends StatelessWidget {
Container(
width: 288,
height: 288,
margin: const EdgeInsets.only(bottom: 32),
margin: const EdgeInsets.only(bottom: 24),
decoration: BoxDecoration(
shape: BoxShape.circle,
color: UiColors.secondaryForeground.withAlpha(
@@ -40,7 +40,7 @@ class GetStartedBackground extends StatelessWidget {
),
),
),
const SizedBox(height: 32),
const SizedBox(height: 16),
],
),
),

View File

@@ -74,7 +74,7 @@ class _OtpInputFieldState extends State<OtpInputField> {
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: List.generate(6, (int index) {
return SizedBox(
width: 56,
width: 45,
height: 56,
child: TextField(
controller: _controllers[index],