Move "Share" to end of DropDownMenu (#8225)

This commit is contained in:
AntsyLich 2022-10-17 19:42:47 +06:00 committed by GitHub
parent 4f91d80765
commit ea33f8dba5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -170,15 +170,6 @@ fun MangaToolbar(
expanded = moreExpanded,
onDismissRequest = onDismissRequest,
) {
if (onClickShare != null) {
DropdownMenuItem(
text = { Text(text = stringResource(R.string.action_share)) },
onClick = {
onClickShare()
onDismissRequest()
},
)
}
DropdownMenuItem(
text = { Text(text = stringResource(R.string.action_edit_categories)) },
onClick = {
@ -193,6 +184,15 @@ fun MangaToolbar(
onDismissRequest()
},
)
if (onClickShare != null) {
DropdownMenuItem(
text = { Text(text = stringResource(R.string.action_share)) },
onClick = {
onClickShare()
onDismissRequest()
},
)
}
}
}
}