disable settings cells that are in progress

This commit is contained in:
Satindar Dhillon 2023-03-20 15:17:20 -07:00
parent f98b97fd29
commit 03adc8c3d6

View file

@ -81,15 +81,15 @@ fun SettingsViewContent(loginViewModel: LoginViewModel, navController: NavHostCo
// profile pic and name
SettingRow(text = "Labels") { Log.d("settings", "labels button tapped") }
RowDivider()
SettingRow(text = "Emails") { Log.d("settings", "emails button tapped") }
RowDivider()
SettingRow(text = "Subscriptions") { Log.d("settings", "subscriptions button tapped") }
// SettingRow(text = "Labels") { Log.d("settings", "labels button tapped") }
// RowDivider()
// SettingRow(text = "Emails") { Log.d("settings", "emails button tapped") }
// RowDivider()
// SettingRow(text = "Subscriptions") { Log.d("settings", "subscriptions button tapped") }
// RowDivider()
// SettingRow(text = "Clubs") { Log.d("settings", "clubs button tapped") }
SectionSpacer()
// SectionSpacer()
// SettingRow(text = "Push Notifications") { Log.d("settings", "pn button tapped") }
// RowDivider()
@ -107,8 +107,8 @@ fun SettingsViewContent(loginViewModel: LoginViewModel, navController: NavHostCo
SectionSpacer()
SettingRow(text = "Manage Account") { Log.d("settings", "logout button tapped") }
RowDivider()
// SettingRow(text = "Manage Account") { Log.d("settings", "logout button tapped") }
// RowDivider()
SettingRow(text = "Logout", includeIcon = false) { showLogoutDialog.value = true }
RowDivider()
}