Updated on 2026-08-14

This commit is contained in:
Tangem 2025-07-29 15:09:21 +04:00
parent ba32fed132
commit 9ef9542750
30 changed files with 452 additions and 157 deletions

View file

@ -134,6 +134,18 @@ object PreferencesKeys {
val NOTIFICATIONS_ENABLED_STATES_KEY by lazy { stringPreferencesKey(name = "notificationsEnabledStates") }
val NOTIFICATIONS_AUTOMATICALLY_ENABLED_STATES_KEY by lazy {
stringPreferencesKey(
name = "notificationsAutomaticallyEnabledStates",
)
}
val NOTIFICATIONS_USER_ALLOW_SEND_ADDRESSES_KEY by lazy {
booleanPreferencesKey(
name = "userAllowSendAddresses",
)
}
val TRON_NETWORK_FEE_NOTIFICATION_SHOW_COUNT_KEY by lazy {
intPreferencesKey(name = "tronNetworkFeeNotificationShowCount")
}

View file

@ -66,7 +66,7 @@ fun Showcase(
}
@Composable
private fun ShowcaseButtons(
fun ShowcaseButtons(
primaryButtonText: TextReference,
secondaryButtonText: TextReference,
onPrimaryClick: () -> Unit,