Skip to content

Commit

Permalink
Changed: Open drawer after hitting fab mark all articles fab (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimowiczm authored Oct 17, 2024
1 parent 5a82fdc commit 0348b6d
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,10 @@ fun FeedScreen(
val floatingActionButton: @Composable () -> Unit = {
PlainTooltipBox(tooltip = { Text(stringResource(R.string.mark_all_as_read)) }) {
FloatingActionButton(
onClick = onMarkAllAsRead,
onClick = {
onMarkAllAsRead()
onOpenNavDrawer()
},
modifier =
Modifier
.navigationBarsPadding(),
Expand Down

0 comments on commit 0348b6d

Please sign in to comment.