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