Skip to content

Commit

Permalink
Update Utils.kt
Browse files Browse the repository at this point in the history
  • Loading branch information
leandroBorgesFerreira committed Sep 19, 2024
1 parent 72fa66e commit b7f3e18
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import io.writeopia.sql.WriteopiaDb
import io.writeopia.sqldelight.database.DatabaseFactory
import io.writeopia.sqldelight.database.driver.DriverFactory
import io.writeopia.sqldelight.di.SqlDelightDaoInjector
import io.writeopia.ui.keyboard.KeyboardEvent
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.flow.MutableStateFlow

Expand All @@ -30,7 +31,8 @@ suspend fun startApp(
disableWebsocket = true,
isUndoKeyEvent = { false },
selectColorTheme = {},
selectionState = MutableStateFlow(false)
selectionState = MutableStateFlow(false),
keyboardEventFlow = MutableStateFlow(KeyboardEvent.IDLE)
)
}
}

0 comments on commit b7f3e18

Please sign in to comment.