A cheap attempt at a native Bluesky client for Android

Notifications: Scroll to top on refresh

When pulling to refresh the notifications timeline, scroll to the top of the list.

+1 -1
+1 -1
app/src/main/java/industries/geesawra/monarch/MainView.kt
··· 220 220 timelineViewModel.fetchNotifications(fresh = true) { 221 221 coroutineScope.launch { 222 222 isRefreshing.value = false 223 - timelineState.scrollToItem(0) 223 + notificationsState.scrollToItem(0) 224 224 } 225 225 } 226 226 }