feat: add update profile screen (#14)

Reviewed-on: https://git.reya.su/reya/coop-mobile/pulls/14
This commit is contained in:
2026-06-06 05:50:32 +00:00
parent 5c2115e8b7
commit b8b3b83952
9 changed files with 451 additions and 320 deletions
@@ -64,6 +64,7 @@ import su.reya.coop.screens.OnboardingScreen
import su.reya.coop.screens.ProfileScreen
import su.reya.coop.screens.RelayScreen
import su.reya.coop.screens.ScanScreen
import su.reya.coop.screens.UpdateProfileScreen
val LocalNostrViewModel = staticCompositionLocalOf<NostrViewModel> {
error("No NostrViewModel provided")
@@ -203,6 +204,9 @@ fun App(viewModel: NostrViewModel) {
entry<Screen.Profile> { key ->
ProfileScreen(pubkey = key.pubkey)
}
entry<Screen.UpdateProfile> {
UpdateProfileScreen()
}
entry<Screen.Scan> {
ScanScreen()
}