Skip to content

Commit

Permalink
fix: change bottom padding on home view
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilfedio committed Sep 27, 2024
1 parent 845114a commit 1bef0ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/features/home_view/home_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class HomeView extends StatelessWidget {
appBar: LogoAppBar(context),
body: KeepAliveHomeViewProviders(
child: ListView.separated(
padding: const EdgeInsets.only(bottom: 48),
padding: const EdgeInsets.only(bottom: 24),
itemBuilder: (context, index) => sections[index],
separatorBuilder: (context, index) =>
const SizedBox(height: HomeViewConfig.paddingMedium),
Expand Down

0 comments on commit 1bef0ff

Please sign in to comment.