File tree Expand file tree Collapse file tree
airsync-mac/Screens/Settings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,16 +101,17 @@ struct SettingsFeaturesView: View {
101101 )
102102 }
103103 }
104+
105+ HStack {
106+ Label ( " App Mirroring " , systemImage: " apps.iphone.badge.plus " )
107+ Spacer ( )
108+ Toggle ( " " , isOn: $appState. mirroringPlus)
109+ . toggleStyle ( . switch)
110+ }
104111
105112 VStack {
106113 DisclosureGroup ( isExpanded: $isExpanded) {
107114 VStack ( spacing: 10 ) {
108- HStack {
109- Label ( " App Mirroring " , systemImage: " apps.iphone.badge.plus " )
110- Spacer ( )
111- Toggle ( " " , isOn: $appState. mirroringPlus)
112- . toggleStyle ( . switch)
113- }
114115
115116 HStack {
116117 Text ( " Video bitrate " )
Original file line number Diff line number Diff line change @@ -32,8 +32,12 @@ struct SettingsView: View {
3232 TextField ( " Device Name " , text: $deviceName)
3333 }
3434 . padding ( )
35+ . background ( . ultraThinMaterial)
36+ . cornerRadius ( 12.0 )
3537
3638 SettingsFeaturesView ( )
39+ . background ( . ultraThinMaterial)
40+ . cornerRadius ( 12.0 )
3741
3842 // Info Section
3943 VStack {
@@ -89,6 +93,8 @@ struct SettingsView: View {
8993
9094 }
9195 . padding ( )
96+ . background ( . ultraThinMaterial)
97+ . cornerRadius ( 12.0 )
9298
9399 HStack {
94100 SaveAndRestartButton (
@@ -119,10 +125,15 @@ struct SettingsView: View {
119125 . frame ( width: 75 )
120126 }
121127 . padding ( )
128+ . background ( . ultraThinMaterial)
129+ . cornerRadius ( 12.0 )
122130
123131 Divider ( )
124132
125133 SettingsPlusView ( )
134+ . padding ( )
135+ . background ( . ultraThinMaterial)
136+ . cornerRadius ( 12.0 )
126137
127138 }
128139 . padding ( )
You can’t perform that action at this time.
0 commit comments