Skip to content

Commit

Permalink
Hide start in wallet option in wallet settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksandarIlic committed Jan 19, 2024
1 parent 3a0c457 commit e54c9f3
Showing 1 changed file with 15 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import androidx.compose.ui.unit.dp
import androidx.core.text.isDigitsOnly
import java.text.NumberFormat
import net.primal.android.R
import net.primal.android.core.compose.PrimalSwitch
import net.primal.android.core.compose.PrimalTopAppBar
import net.primal.android.core.compose.icons.PrimalIcons
import net.primal.android.core.compose.icons.primaliconpack.ArrowBack
Expand Down Expand Up @@ -122,21 +121,21 @@ fun WalletSettingsScreen(
)

if (state.walletPreference != WalletPreference.NostrWalletConnect) {
Spacer(modifier = Modifier.height(8.dp))

SettingsItem(
headlineText = stringResource(id = R.string.settings_wallet_start_in_wallet),
supportText = stringResource(id = R.string.settings_wallet_start_in_wallet_hint),
trailingContent = {
PrimalSwitch(
checked = false,
onCheckedChange = {
},
)
},
onClick = {
},
)
// Spacer(modifier = Modifier.height(8.dp))
//
// SettingsItem(
// headlineText = stringResource(id = R.string.settings_wallet_start_in_wallet),
// supportText = stringResource(id = R.string.settings_wallet_start_in_wallet_hint),
// trailingContent = {
// PrimalSwitch(
// checked = false,
// onCheckedChange = {
// },
// )
// },
// onClick = {
// },
// )

Spacer(modifier = Modifier.height(8.dp))

Expand Down

0 comments on commit e54c9f3

Please sign in to comment.