From 79c935f62f07956dd52419360451e69653fb801b Mon Sep 17 00:00:00 2001 From: Chaphasilor Date: Mon, 11 Nov 2024 10:51:26 +0100 Subject: [PATCH] improve alphabet list padding --- lib/components/MusicScreen/alphabet_item_list.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/components/MusicScreen/alphabet_item_list.dart b/lib/components/MusicScreen/alphabet_item_list.dart index 660ec9e5..5cbf5c77 100644 --- a/lib/components/MusicScreen/alphabet_item_list.dart +++ b/lib/components/MusicScreen/alphabet_item_list.dart @@ -93,7 +93,7 @@ class _AlphabetListState extends State { children: List.generate( alphabet.length, (x) => Container( - padding: const EdgeInsets.only(right: 1.0), + padding: const EdgeInsets.only(right: 6.0), height: _letterHeight, child: FittedBox( child: Text( @@ -126,7 +126,7 @@ class _AlphabetListState extends State { ScrollConfiguration( behavior: const FinampScrollBehavior(scrollbars: false), child: Padding( - padding: const EdgeInsets.only(right: 14.0), + padding: const EdgeInsets.only(right: 22.0), child: widget.child, )), if (_currentSelected != null && _displayPreview)