Skip to content

Commit

Permalink
improve alphabet list padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Nov 11, 2024
1 parent fa232f6 commit 79c935f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/components/MusicScreen/alphabet_item_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class _AlphabetListState extends State<AlphabetList> {
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(
Expand Down Expand Up @@ -126,7 +126,7 @@ class _AlphabetListState extends State<AlphabetList> {
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)
Expand Down

0 comments on commit 79c935f

Please sign in to comment.