File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
app/src/main/kotlin/com/mr3y/podcaster/ui Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ fun EpisodeDetailsScreen(
188188 if (state.episode != null && ! state.isLoading) {
189189 TopBarMoreOptionsButton (
190190 shareActionTitle = state.episode.title,
191- shareActionText = state.episode.episodeUrl
191+ shareActionText = state.episode.episodeUrl,
192192 )
193193 }
194194 },
Original file line number Diff line number Diff line change @@ -256,7 +256,7 @@ fun PodcastDetailsScreen(
256256 colors = IconButtonDefaults .iconButtonColors(
257257 containerColor = Color .Transparent ,
258258 contentColor = dominantColorState.onColor,
259- )
259+ ),
260260 )
261261 }
262262 },
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ fun TopBarMoreOptionsButton(
2626 shareActionTitle : String ,
2727 shareActionText : String ,
2828 modifier : Modifier = Modifier ,
29- colors : IconButtonColors ? = null
29+ colors : IconButtonColors ? = null,
3030) {
3131 var showOptions by remember { mutableStateOf(false ) }
3232 var showShareSheet by remember { mutableStateOf(false ) }
@@ -35,11 +35,11 @@ fun TopBarMoreOptionsButton(
3535 IconButton (
3636 onClick = { showOptions = ! showOptions },
3737 colors = colors ? : IconButtonDefaults .iconButtonColors(),
38- modifier = modifier
38+ modifier = modifier,
3939 ) {
4040 Icon (
4141 imageVector = Icons .Filled .MoreVert ,
42- contentDescription = strings.icon_more_options_content_description
42+ contentDescription = strings.icon_more_options_content_description,
4343 )
4444 }
4545
@@ -49,7 +49,7 @@ fun TopBarMoreOptionsButton(
4949 ) {
5050 DropdownMenuItem (
5151 text = { Text (strings.share_label) },
52- onClick = { showShareSheet = true }
52+ onClick = { showShareSheet = true },
5353 )
5454 }
5555
You can’t perform that action at this time.
0 commit comments