File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
app/src/main/java/com/shub39/rush/presentation/lyrics/section Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 22
33## 5.5.0
44- Translation updates
5- - Redid all icons
6- - Fixed Synced lyrics anchoring to the bottom
5+ - Redid all icons. (reason) [ https://x.com/riggaroo/status/1971485475866341530?s=20 ]
6+ - Fixed Synced lyrics anchoring to the bottom ( # 199 )
77- Added Scale to the current synced lyric
8- - Added Controls for media
9- - Added Action bar in landscape mode
8+ - Added Controls for media (#204 )
9+ - Added Action bar in landscape mode (#210 )
10+ - All screens are now usable in landscape mode and larger devices.
1011
1112## 5.4.2
1213- Trimmed unneeded network calls
Original file line number Diff line number Diff line change @@ -142,11 +142,12 @@ fun LyricsCustomisationsPage(
142142 modifier = modifier
143143 ) { paddingValues ->
144144 LazyColumn (
145- modifier = Modifier .fillMaxSize(),
145+ modifier = Modifier
146+ .padding(top = paddingValues.calculateTopPadding())
147+ .fillMaxSize(),
146148 contentPadding = PaddingValues (
147149 start = paddingValues.calculateLeftPadding(LocalLayoutDirection .current),
148150 end = paddingValues.calculateRightPadding(LocalLayoutDirection .current),
149- top = paddingValues.calculateTopPadding() + 16 .dp,
150151 bottom = paddingValues.calculateBottomPadding() + 60 .dp
151152 ),
152153 verticalArrangement = Arrangement .spacedBy(16 .dp)
You can’t perform that action at this time.
0 commit comments