Bsky App State Pref
data class BskyAppStatePref(val activeProgressGuide: BskyAppProgressGuide? = null, val queuedNudges: List<String> = emptyList(), val nuxs: List<Nux> = emptyList())
A grab bag of state that's specific to the bsky.app program. Third-party apps shouldn't use this.
Parameters
queued Nudges
An array of tokens which identify nudges (modals, popups, tours, highlight dots) that should be shown to the user.
nuxs
Storage for NUXs the user has encountered.
Constructors
Link copied to clipboard
constructor(activeProgressGuide: BskyAppProgressGuide? = null, queuedNudges: List<String> = emptyList(), nuxs: List<Nux> = emptyList())