Vaibhav_Feature-#768 #59

Closed
vaibhav.surve wants to merge 74 commits from Vaibhav_Feature-#768 into Feature_Expense
Showing only changes of commit 84811635d0 - Show all commits

View File

@ -488,7 +488,10 @@ class _ExpenseList extends StatelessWidget {
format: 'dd MMM yyyy, hh:mm a',
);
return GestureDetector(
return Material(
color: Colors.transparent,
child: InkWell(
borderRadius: BorderRadius.circular(8),
onTap: () async {
final result = await Get.to(
() => ExpenseDetailScreen(expenseId: expense.id),
@ -499,7 +502,7 @@ class _ExpenseList extends StatelessWidget {
}
},
child: Padding(
padding: const EdgeInsets.symmetric(vertical: 4),
padding: const EdgeInsets.symmetric(vertical: 8),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
@ -537,6 +540,7 @@ class _ExpenseList extends StatelessWidget {
],
),
),
),
);
},
);