File tree Expand file tree Collapse file tree
src/main/java/org/schabi/newpipe/ui/screens Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -284,11 +284,10 @@ dependencies {
284284 implementation " org.ocpsoft.prettytime:prettytime:5.0.8.Final"
285285
286286 // Jetpack Compose
287- implementation(platform(' androidx.compose:compose-bom:2024.06 .00' ))
288- implementation ' androidx.compose.material3:material3:1.3.0-beta04 '
287+ implementation(platform(' androidx.compose:compose-bom:2024.08 .00' ))
288+ implementation ' androidx.compose.material3:material3'
289289 implementation ' androidx.activity:activity-compose'
290290 implementation ' androidx.compose.ui:ui-tooling-preview'
291- implementation ' androidx.compose.ui:ui-text:1.7.0-beta05' // Needed for parsing HTML to AnnotatedString
292291 implementation ' com.github.nanihadesuka:LazyColumnScrollbar:2.2.0'
293292
294293 // Library loading for About screen
Original file line number Diff line number Diff line change 11package org.schabi.newpipe.ui.screens
22
33import android.content.res.Configuration
4+ import androidx.compose.foundation.ExperimentalFoundationApi
45import androidx.compose.foundation.layout.Column
56import androidx.compose.foundation.layout.PaddingValues
67import androidx.compose.foundation.layout.fillMaxWidth
@@ -31,6 +32,7 @@ import org.schabi.newpipe.ui.theme.AppTheme
3132
3233private val TITLES = intArrayOf(R .string.tab_about, R .string.tab_licenses)
3334
35+ @OptIn(ExperimentalFoundationApi ::class )
3436@Composable
3537@NonRestartableComposable
3638fun AboutScreen (padding : PaddingValues ) {
You can’t perform that action at this time.
0 commit comments