64 lines
1.7 KiB
Dart
64 lines
1.7 KiB
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
import 'package:enaklo_pos/core/assets/assets.gen.dart';
|
||
|
|
|
||
|
|
import '../../../core/components/spaces.dart';
|
||
|
|
import '../../../core/constants/colors.dart';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
class ReportMenu extends StatelessWidget {
|
||
|
|
final String label;
|
||
|
|
final VoidCallback onPressed;
|
||
|
|
final bool isActive;
|
||
|
|
|
||
|
|
const ReportMenu({
|
||
|
|
super.key,
|
||
|
|
required this.label,
|
||
|
|
required this.onPressed,
|
||
|
|
required this.isActive,
|
||
|
|
});
|
||
|
|
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return GestureDetector(
|
||
|
|
onTap: onPressed,
|
||
|
|
child: Container(
|
||
|
|
margin: const EdgeInsets.all(5.0),
|
||
|
|
width: 180.0,
|
||
|
|
height: 160.0,
|
||
|
|
alignment: Alignment.center,
|
||
|
|
decoration: BoxDecoration(
|
||
|
|
color:
|
||
|
|
isActive ? AppColors.primary.withOpacity(0.13) : AppColors.white,
|
||
|
|
borderRadius: BorderRadius.circular(18.0),
|
||
|
|
border: Border.all(
|
||
|
|
color: isActive ? AppColors.primary : AppColors.stroke,
|
||
|
|
),
|
||
|
|
),
|
||
|
|
child: Column(
|
||
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
||
|
|
children: [
|
||
|
|
Assets.icons.report.svg(
|
||
|
|
colorFilter: isActive
|
||
|
|
? const ColorFilter.mode(
|
||
|
|
AppColors.primary,
|
||
|
|
BlendMode.srcIn,
|
||
|
|
)
|
||
|
|
: null,
|
||
|
|
),
|
||
|
|
const SpaceHeight(28.0),
|
||
|
|
Text(
|
||
|
|
label,
|
||
|
|
style: TextStyle(
|
||
|
|
color: isActive ? AppColors.primary : AppColors.black,
|
||
|
|
fontWeight: FontWeight.w600,
|
||
|
|
),
|
||
|
|
),
|
||
|
|
const SpaceHeight(24.0),
|
||
|
|
],
|
||
|
|
),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|