Set splash screen ready state for history and updates pages

This commit is contained in:
arkon
2022-07-23 19:37:26 -04:00
parent 978489fade
commit cd9487f94c
2 changed files with 12 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ import androidx.activity.OnBackPressedDispatcherOwner
import androidx.appcompat.app.AlertDialog
import androidx.compose.material3.Text
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.collectAsState
import androidx.compose.runtime.getValue
import com.google.android.material.dialog.MaterialAlertDialogBuilder
@@ -57,6 +58,11 @@ class UpdatesController :
onMultiDeleteClicked = this::deleteChaptersWithConfirmation,
)
}
LaunchedEffect(state) {
if (state !is UpdatesState.Loading) {
(activity as? MainActivity)?.ready = true
}
}
}
private fun updateLibrary() {