Done Category, Product Catalogue, Customer, Vendor, Purchase Invoice Module

This commit is contained in:
2026-08-28 11:30:18 +05:30
parent 0d13833679
commit 189f49ed07
118 changed files with 12624 additions and 4004 deletions

View File

@@ -31,20 +31,37 @@ class ProjectHubScreen extends ConsumerWidget {
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.primary.withValues(alpha: 0.1),
color: Theme.of(
context,
).colorScheme.primary.withValues(alpha: 0.1),
borderRadius: BorderRadius.circular(16),
border: Border.all(color: Theme.of(context).colorScheme.primary.withValues(alpha: 0.2)),
border: Border.all(
color: Theme.of(
context,
).colorScheme.primary.withValues(alpha: 0.2),
),
),
child: Row(
children: [
Icon(LucideIcons.layoutDashboard, color: Theme.of(context).colorScheme.primary, size: 32),
Icon(
LucideIcons.layoutDashboard,
color: Theme.of(context).colorScheme.primary,
size: 32,
),
const SizedBox(width: 16),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text('Agency OS', style: Theme.of(context).textTheme.titleLarge?.copyWith(fontWeight: FontWeight.bold)),
const Text('Manage projects, tasks, and client billing', style: TextStyle(color: Colors.grey)),
Text(
'Agency OS',
style: Theme.of(context).textTheme.titleLarge
?.copyWith(fontWeight: FontWeight.bold),
),
const Text(
'Manage projects, tasks, and client billing',
style: TextStyle(color: Colors.grey),
),
],
),
),
@@ -62,36 +79,50 @@ class ProjectHubScreen extends ConsumerWidget {
childAspectRatio: 1.2,
children: [
_buildActionCard(
context,
'Projects & Tasks',
'Manage all projects',
LucideIcons.folderKanban,
context,
'Projects & Tasks',
'Manage all projects',
LucideIcons.folderKanban,
Colors.blue,
() => Navigator.push(context, MaterialPageRoute(builder: (_) => const ProjectsScreen())),
() => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const ProjectsScreen()),
),
),
_buildActionCard(
context,
'Invoices',
'Client billing',
LucideIcons.receipt,
context,
'Invoices',
'Client billing',
LucideIcons.receipt,
Colors.green,
() => Navigator.push(context, MaterialPageRoute(builder: (_) => const InvoicesListScreen())),
() => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const InvoicesListScreen()),
),
),
_buildActionCard(
context,
'Clients',
'Manage clients',
LucideIcons.users,
context,
'Clients',
'Manage clients',
LucideIcons.users,
NatureColors.getColor('RECEIVABLES'),
() => Navigator.push(context, MaterialPageRoute(builder: (_) => const CustomersListScreen())),
() => Navigator.push(
context,
MaterialPageRoute(
builder: (_) => const CustomersListScreen(),
),
),
),
_buildActionCard(
context,
'Contractors',
'Manage vendors',
LucideIcons.truck,
context,
'Contractors',
'Manage vendors',
LucideIcons.truck,
Colors.orange,
() => Navigator.push(context, MaterialPageRoute(builder: (_) => const VendorsListScreen())),
() => Navigator.push(
context,
MaterialPageRoute(builder: (_) => const VendorsListScreen()),
),
),
],
),
@@ -100,7 +131,14 @@ class ProjectHubScreen extends ConsumerWidget {
);
}
Widget _buildActionCard(BuildContext context, String title, String subtitle, IconData icon, Color color, VoidCallback onTap) {
Widget _buildActionCard(
BuildContext context,
String title,
String subtitle,
IconData icon,
Color color,
VoidCallback onTap,
) {
return GestureDetector(
onTap: onTap,
child: Container(
@@ -116,9 +154,22 @@ class ProjectHubScreen extends ConsumerWidget {
children: [
Icon(icon, color: color, size: 28),
const SizedBox(height: 12),
Text(title, style: TextStyle(color: color, fontWeight: FontWeight.bold, fontSize: 16)),
Text(
title,
style: TextStyle(
color: color,
fontWeight: FontWeight.bold,
fontSize: 16,
),
),
const SizedBox(height: 4),
Text(subtitle, style: TextStyle(color: color.withValues(alpha: 0.7), fontSize: 12)),
Text(
subtitle,
style: TextStyle(
color: color.withValues(alpha: 0.7),
fontSize: 12,
),
),
],
),
),