Skip to content

Commit c68be37

Browse files
committed
fix: fix save history list tile padding
1 parent f70d7f2 commit c68be37

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/features/achieved_detail/widget/achieved_save_history.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class AchievedSaveHistory extends StatelessWidget {
1919
return Card(
2020
margin: const EdgeInsets.only(bottom: 128),
2121
child: Padding(
22-
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 28),
22+
padding: const EdgeInsets.only(top: 8, right: 28, left: 28),
2323
child: ListView.builder(
2424
physics: const NeverScrollableScrollPhysics(),
2525
reverse: true,

lib/features/wish_detail/widget/save_history.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SaveHistory extends StatelessWidget {
1818
return Card(
1919
margin: const EdgeInsets.only(bottom: 128),
2020
child: Padding(
21-
padding: const EdgeInsets.symmetric(vertical: 8, horizontal: 28),
21+
padding: const EdgeInsets.only(top: 8, right: 28, left: 28),
2222
child: ListView.builder(
2323
physics: const NeverScrollableScrollPhysics(),
2424
reverse: true,

lib/features/wish_detail/widget/saving_list_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class SavingListItem extends StatelessWidget {
1313
children: [
1414
const SizedBox(height: 10),
1515
ListTile(
16-
contentPadding: EdgeInsets.zero,
16+
contentPadding: const EdgeInsets.only(bottom: 8),
1717
leading: Column(
1818
crossAxisAlignment: CrossAxisAlignment.start,
1919
children: [

0 commit comments

Comments
 (0)