<Android Jetpack Compose, How to click different b...
# stackoverflow
r
Android Jetpack Compose, How to click different button to go to different webview in the app in my main page I have several button, click button will go to its webview in the app(not using the browser). I already wrote a composable function WebView like this, and Navigation: @Composable fun WebView(url:String) { Scaffold( topBar = { TopAppBar(title = { Text("WebView", color = Color.White) }, backgroundColor = Color(82,79,160,255)) }, content = { WebViewContent(url) } ) } @Composable fun WebViewContent(url:String) { AndroidView(factory = {...