TF-2893 Apply the standard app grid icon

This commit is contained in:
dab246
2024-07-23 13:35:02 +07:00
committed by Dat H. Pham
parent 47b006f685
commit 8b7ac1f039
27 changed files with 173 additions and 77 deletions
@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
class AppGridDashboardStyle {
static const double iconSize = 42;
static const double hoverIconSize = 80;
static const EdgeInsetsGeometry padding = EdgeInsetsDirectional.symmetric(horizontal: 10, vertical: 14);
static final List<BoxShadow> cardShadow = [
BoxShadow(
color: Colors.black.withOpacity(0.15),
blurRadius: 20,
offset: Offset.zero
),
];
}