Hide keyboard when switching to preview
This commit is contained in:
parent
b706f5b5eb
commit
f891d3635d
1 changed files with 10 additions and 1 deletions
|
@ -51,9 +51,11 @@ import androidx.compose.runtime.remember
|
||||||
import androidx.compose.runtime.rememberCoroutineScope
|
import androidx.compose.runtime.rememberCoroutineScope
|
||||||
import androidx.compose.runtime.setValue
|
import androidx.compose.runtime.setValue
|
||||||
import androidx.compose.ui.Alignment
|
import androidx.compose.ui.Alignment
|
||||||
|
import androidx.compose.ui.ExperimentalComposeUiApi
|
||||||
import androidx.compose.ui.Modifier
|
import androidx.compose.ui.Modifier
|
||||||
import androidx.compose.ui.graphics.Color
|
import androidx.compose.ui.graphics.Color
|
||||||
import androidx.compose.ui.platform.LocalContext
|
import androidx.compose.ui.platform.LocalContext
|
||||||
|
import androidx.compose.ui.platform.LocalSoftwareKeyboardController
|
||||||
import androidx.compose.ui.res.painterResource
|
import androidx.compose.ui.res.painterResource
|
||||||
import androidx.compose.ui.text.AnnotatedString
|
import androidx.compose.ui.text.AnnotatedString
|
||||||
import androidx.compose.ui.text.SpanStyle
|
import androidx.compose.ui.text.SpanStyle
|
||||||
|
@ -73,7 +75,7 @@ import kotlinx.coroutines.isActive
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import java.net.URI
|
import java.net.URI
|
||||||
|
|
||||||
@OptIn(ExperimentalFoundationApi::class)
|
@OptIn(ExperimentalFoundationApi::class, ExperimentalComposeUiApi::class)
|
||||||
@Composable
|
@Composable
|
||||||
fun MainScreen(
|
fun MainScreen(
|
||||||
navController: NavController,
|
navController: NavController,
|
||||||
|
@ -234,6 +236,13 @@ fun MainScreen(
|
||||||
userScrollEnabled = !lockSwiping
|
userScrollEnabled = !lockSwiping
|
||||||
) { page ->
|
) { page ->
|
||||||
val markdown by viewModel.markdown.collectAsState()
|
val markdown by viewModel.markdown.collectAsState()
|
||||||
|
val keyboardController = LocalSoftwareKeyboardController.current
|
||||||
|
LaunchedEffect(page) {
|
||||||
|
when (page) {
|
||||||
|
0 -> keyboardController?.show()
|
||||||
|
else -> keyboardController?.hide()
|
||||||
|
}
|
||||||
|
}
|
||||||
var textFieldValue by remember(clearText) {
|
var textFieldValue by remember(clearText) {
|
||||||
val annotatedMarkdown = if (enableReadability) {
|
val annotatedMarkdown = if (enableReadability) {
|
||||||
markdown.annotateReadability()
|
markdown.annotateReadability()
|
||||||
|
|
Loading…
Reference in a new issue