A cheap attempt at a native Bluesky client for Android
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'worktree-typed-snacking-peach'

geesawra 0dc462d5 e3ce3567

+4 -1
+4 -1
app/src/main/java/industries/geesawra/monarch/AccountSwitcherSheet.kt
··· 60 60 modifier = Modifier.padding(start = 24.dp, bottom = 16.dp) 61 61 ) 62 62 63 - accounts.forEach { account -> 63 + val active = accounts.filter { it.did == activeDid } 64 + val rest = accounts.filter { it.did != activeDid }.sortedByDescending { it.handle } 65 + val sortedAccounts = active + rest 66 + sortedAccounts.forEach { account -> 64 67 val isActive = account.did == activeDid 65 68 Row( 66 69 modifier = Modifier