Add video id to stats for nerds
This commit is contained in:
@@ -330,6 +330,10 @@ fun PlayerView(
|
|||||||
.padding(all = 16.dp)
|
.padding(all = 16.dp)
|
||||||
) {
|
) {
|
||||||
Column {
|
Column {
|
||||||
|
BasicText(
|
||||||
|
text = "Id",
|
||||||
|
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
||||||
|
)
|
||||||
BasicText(
|
BasicText(
|
||||||
text = "Volume",
|
text = "Volume",
|
||||||
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
||||||
@@ -349,6 +353,10 @@ fun PlayerView(
|
|||||||
}
|
}
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
|
BasicText(
|
||||||
|
text = playerState.mediaItem?.mediaId ?: "Unknown",
|
||||||
|
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
||||||
|
)
|
||||||
BasicText(
|
BasicText(
|
||||||
text = "${playerState.volume.times(100).roundToInt()}%",
|
text = "${playerState.volume.times(100).roundToInt()}%",
|
||||||
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
style = typography.xs.semiBold.color(BlackColorPalette.text)
|
||||||
|
|||||||
Reference in New Issue
Block a user