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, ), ), ], ), ); } }