bharat_erp/lib/modules/assets/presentation/screens/asset_allocations_screen.dart
SurendarSuri30 8f852ac4f6 Initial commit: Bharat ERP Flutter application.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-19 15:04:06 +05:30

32 lines
896 B
Dart

import 'package:flutter/material.dart';
import '../../../../shared/widgets/error_view.dart';
import '../../../../shared/widgets/page_header.dart';
class AssetAllocationsScreen extends StatelessWidget {
const AssetAllocationsScreen({super.key});
@override
Widget build(BuildContext context) {
return const Padding(
padding: EdgeInsets.all(24),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
PageHeader(
title: 'Asset Allocations',
subtitle: 'Assign, return, reassign, and transfer assets',
),
Expanded(
child: EmptyStateView(
title: 'No allocations',
description: 'Assign assets to employees and track allocation history.',
icon: Icons.assignment_ind_outlined,
),
),
],
),
);
}
}