Skip to content

Commit

Permalink
Merge pull request #536 from 014967/feature/webview_keyboard
Browse files Browse the repository at this point in the history
Feature/webview keyboard
  • Loading branch information
014967 authored Sep 1, 2024
2 parents d6689e1 + 17d915b commit 4d8bd03
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.activity.viewModels
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.imePadding
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import androidx.compose.ui.Modifier
Expand All @@ -34,7 +35,7 @@ class BirthdayActivity : ComponentActivity() {
MashUpTheme {
val webViewUiState by webViewViewModel.webViewUiState.collectAsState(WebViewUiState.Loading)
WebViewScreen(
modifier = Modifier.fillMaxSize(),
modifier = Modifier.fillMaxSize().imePadding(),
webViewUiState = webViewUiState,
mashupBridge = MashupBridge(
this,
Expand Down

0 comments on commit 4d8bd03

Please sign in to comment.