Skip to content

Commit

Permalink
fix(ui): use better spacing for library page
Browse files Browse the repository at this point in the history
  • Loading branch information
gokadzev committed Oct 26, 2024
1 parent d5b05c4 commit 0fc5973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions lib/screens/library_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class _LibraryPageState extends State<LibraryPage> {
labelText: '${context.l10n!.search}...',
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 5),
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 20),
child: Wrap(
spacing: 8,
children: List.generate(3, (index) {
Expand All @@ -90,7 +90,6 @@ class _LibraryPageState extends State<LibraryPage> {
}),
),
),
const SizedBox(height: 30),
Expanded(
child: SingleChildScrollView(
child: Column(
Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/section_title.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SectionTitle extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(25),
padding: const EdgeInsets.symmetric(vertical: 15, horizontal: 25),
child: Align(
alignment: Alignment.centerLeft,
child: SizedBox(
Expand Down

0 comments on commit 0fc5973

Please sign in to comment.