Fix loading progress not showing in webview (#7243)
* Fix loading progress not showing in webview * Review Changes
Cette révision appartient à :
Parent
6ddd6ed0e3
révision
0e1e57c1c3
1 fichiers modifiés avec 5 ajouts et 2 suppressions
|
@ -20,6 +20,7 @@ import androidx.compose.runtime.remember
|
|||
import androidx.compose.ui.Modifier
|
||||
import androidx.compose.ui.platform.LocalContext
|
||||
import androidx.compose.ui.res.stringResource
|
||||
import androidx.compose.ui.zIndex
|
||||
import com.google.accompanist.web.AccompanistWebViewClient
|
||||
import com.google.accompanist.web.LoadingState
|
||||
import com.google.accompanist.web.WebView
|
||||
|
@ -106,12 +107,14 @@ fun WebViewScreen(
|
|||
},
|
||||
)
|
||||
|
||||
Box(modifier = Modifier.weight(1f)) {
|
||||
Box {
|
||||
val loadingState = state.loadingState
|
||||
if (loadingState is LoadingState.Loading) {
|
||||
LinearProgressIndicator(
|
||||
progress = loadingState.progress,
|
||||
modifier = Modifier.fillMaxWidth(),
|
||||
modifier = Modifier
|
||||
.fillMaxWidth()
|
||||
.zIndex(1f),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Référencer dans un nouveau ticket