feat: add Poultry Farm Inspection module with navigation and logic

This commit is contained in:
2025-11-18 08:10:19 +03:30
parent 0669e22cfa
commit c4bc31029f
14 changed files with 1638 additions and 135 deletions

View File

@@ -0,0 +1,36 @@
import 'package:flutter/material.dart';
import 'package:rasadyar_core/core.dart';
Widget cardInfo({
required int value,
required String description,
required Color color,
}) {
return Container(
width: 93.w,
height: 53.h,
decoration: BoxDecoration(
color: color,
borderRadius: BorderRadius.circular(8),
border: Border.all(
width: 0.50,
color: const Color.fromARGB(54, 169, 169, 169),
),
),
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
spacing: 4,
children: [
Text(
value.separatedByCommaFa,
style: AppFonts.yekan13Bold.copyWith(color: AppColor.textColor),
),
Text(
description,
style: AppFonts.yekan10.copyWith(color: AppColor.textColor),
),
],
),
);
}