Convert AccountSettingsFragment from DSL to Compose.

This commit is contained in:
Alex Hart
2025-08-19 16:47:44 -03:00
committed by Jeffrey Starke
parent 71c34e17eb
commit dcce8ea35a
6 changed files with 755 additions and 142 deletions

View File

@@ -158,9 +158,10 @@ object Rows {
label: String? = null,
icon: ImageVector? = null,
textColor: Color = MaterialTheme.colorScheme.onSurface,
enabled: Boolean = true,
isLoading: Boolean = false
) {
val enabled = !isLoading
val enabled = enabled && !isLoading
Row(
modifier = modifier