67 lines
1.7 KiB
Dart
67 lines
1.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../../constant/colors.dart';
|
|
import '../../constant/style.dart';
|
|
|
|
class IconWidgetMenu extends StatelessWidget {
|
|
const IconWidgetMenu({
|
|
Key? key,
|
|
required this.onpressed,
|
|
required this.icon,
|
|
required this.title,
|
|
}) : super(key: key);
|
|
|
|
final VoidCallback onpressed;
|
|
final IconData icon;
|
|
final String title;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return InkWell(
|
|
onTap: onpressed,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(top: 25),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Container(
|
|
width: 40,
|
|
decoration: const BoxDecoration(
|
|
color: AppColor.secondaryColor,
|
|
shape: BoxShape.circle,
|
|
boxShadow: [
|
|
BoxShadow(
|
|
color: AppColor.secondaryColor,
|
|
offset: Offset(-2, -2),
|
|
blurRadius: 0,
|
|
spreadRadius: 0,
|
|
blurStyle: BlurStyle.outer,
|
|
),
|
|
BoxShadow(
|
|
color: AppColor.accentColor,
|
|
offset: Offset(3, 3),
|
|
blurRadius: 0,
|
|
spreadRadius: 0,
|
|
blurStyle: BlurStyle.outer,
|
|
),
|
|
],
|
|
),
|
|
child: Center(
|
|
child: Icon(
|
|
icon,
|
|
size: 30,
|
|
color: AppColor.primaryColor,
|
|
),
|
|
),
|
|
),
|
|
Text(
|
|
title,
|
|
style: AppStyle.subtitle,
|
|
)
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|