add onboarding related state to app

Signed-off-by: kernelkind <kernelkind@gmail.com>
This commit is contained in:
kernelkind
2025-08-07 17:34:14 -04:00
parent a782d01ec2
commit bdcd31cda0
2 changed files with 14 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
use std::collections::HashMap;
use enostr::Pubkey;
use notedeck_ui::nip51_set::Nip51SetUiCache;
use crate::deck_state::DeckState;
use crate::login_manager::AcquireKeyState;
@@ -25,6 +26,9 @@ pub struct ViewState {
/// fullscreen media viewier, as well as any other state we want to
/// keep track of
pub media_viewer: MediaViewerState,
/// Keep track of checkbox state of follow pack onboarding
pub follow_packs: Nip51SetUiCache,
}
impl ViewState {