Cleanup
This commit is contained in:
parent
d5594625ec
commit
574509526d
|
@ -27,7 +27,7 @@ struct SettingsView: View {
|
||||||
var body: some View {
|
var body: some View {
|
||||||
NavigationView {
|
NavigationView {
|
||||||
Form {
|
Form {
|
||||||
Section(header: Text("")) {
|
Section(header: EmptyView()) {
|
||||||
HStack {
|
HStack {
|
||||||
Text("User")
|
Text("User")
|
||||||
Spacer()
|
Spacer()
|
||||||
|
@ -58,7 +58,7 @@ struct SettingsView: View {
|
||||||
.font(.callout)
|
.font(.callout)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Section(header: Text("Playback settings")) {
|
Section(header: Text("Playback")) {
|
||||||
Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
Picker("Default local quality", selection: $inNetworkStreamBitrate) {
|
||||||
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
ForEach(self.viewModel.bitrates, id: \.self) { bitrate in
|
||||||
Text(bitrate.name).tag(bitrate.value)
|
Text(bitrate.name).tag(bitrate.value)
|
||||||
|
|
Loading…
Reference in New Issue