Skip to content

Commit

Permalink
0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sakethpathike committed Sep 1, 2024
1 parent f97e956 commit 003ae51
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
Binary file modified app/github/release/app-github-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/github/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 25,
"versionName": "0.7.0",
"versionCode": 26,
"versionName": "0.7.1",
"outputFile": "app-github-release.apk"
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,18 @@ fun ChildHomeScreen(
})
}
val context = LocalContext.current
val shouldDeleteDialogBoxAppear = rememberSaveable {
mutableStateOf(false)
}
LaunchedEffect(key1 = Unit) {
specificCollectionsScreenVM.eventChannel.collectLatest {
homeScreenVM.eventChannel.collectLatest {
when (it) {
is CommonUiEvent.ShowToast -> {
Toast.makeText(context, it.msg, Toast.LENGTH_SHORT).show()
}
else -> {}
is CommonUiEvent.ShowDeleteDialogBox -> {
shouldDeleteDialogBoxAppear.value = true
}
}
}
}
Expand All @@ -115,9 +120,6 @@ fun ChildHomeScreen(
val shouldOptionsBtmModalSheetBeVisible = rememberSaveable {
mutableStateOf(false)
}
val shouldDeleteDialogBoxAppear = rememberSaveable {
mutableStateOf(false)
}
val shouldRenameDialogBoxAppear = rememberSaveable {
mutableStateOf(false)
}
Expand Down

0 comments on commit 003ae51

Please sign in to comment.