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

Configure Feed

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

AccountSwitcherSheet: Active account first, rest sorted descending

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

geesawra 8e4d6735 814c437e

+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