Skip to content

Commit ef9bdc5

Browse files
author
GitHub Actions
committed
Apply style formatting
1 parent 8d7f61f commit ef9bdc5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/src/main/kotlin/com/mr3y/podcaster/ui/screens/EpisodeDetailsScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

app/src/main/kotlin/com/mr3y/podcaster/ui/screens/PodcastDetailsScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
},

app/src/main/kotlin/com/mr3y/podcaster/ui/utils/ShareSheet.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)