Remove padding from card wrapper and comment out quick actions in dashboard for layout adjustments

This commit is contained in:
Vaibhav Surve 2025-11-29 15:33:49 +05:30
parent 6ed069d924
commit d4d678d98a

View File

@ -47,7 +47,6 @@ class _DashboardScreenState extends State<DashboardScreen> with UIMixin {
Widget _cardWrapper({required Widget child}) { Widget _cardWrapper({required Widget child}) {
return Container( return Container(
margin: const EdgeInsets.only(bottom: 16), margin: const EdgeInsets.only(bottom: 16),
padding: const EdgeInsets.all(14),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
borderRadius: BorderRadius.circular(5), borderRadius: BorderRadius.circular(5),
@ -461,8 +460,8 @@ class _DashboardScreenState extends State<DashboardScreen> with UIMixin {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: [ children: [
_projectSelector(), _projectSelector(),
MySpacing.height(20), // MySpacing.height(20),
_quickActions(), // _quickActions(),
MySpacing.height(20), MySpacing.height(20),
// The updated module cards // The updated module cards
_dashboardCards(), _dashboardCards(),