ios item view fixes
This commit is contained in:
parent
7b67f4bc2a
commit
9845789ee6
|
@ -48,6 +48,8 @@ struct ItemViewDetailsView: View {
|
||||||
L10n.file.text
|
L10n.file.text
|
||||||
.font(.subheadline)
|
.font(.subheadline)
|
||||||
Text(viewModel.selectedVideoPlayerViewModel?.filename ?? "--")
|
Text(viewModel.selectedVideoPlayerViewModel?.filename ?? "--")
|
||||||
|
.lineLimit(nil)
|
||||||
|
.fixedSize(horizontal: false, vertical: true)
|
||||||
.font(.subheadline)
|
.font(.subheadline)
|
||||||
.foregroundColor(Color.secondary)
|
.foregroundColor(Color.secondary)
|
||||||
}
|
}
|
||||||
|
@ -67,6 +69,8 @@ struct ItemViewDetailsView: View {
|
||||||
Text(mediaItem.title)
|
Text(mediaItem.title)
|
||||||
.font(.subheadline)
|
.font(.subheadline)
|
||||||
Text(mediaItem.content)
|
Text(mediaItem.content)
|
||||||
|
.lineLimit(nil)
|
||||||
|
.fixedSize(horizontal: false, vertical: true)
|
||||||
.font(.subheadline)
|
.font(.subheadline)
|
||||||
.foregroundColor(Color.secondary)
|
.foregroundColor(Color.secondary)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue