summaryrefslogtreecommitdiffhomepage
path: root/ios
diff options
context:
space:
mode:
Diffstat (limited to 'ios')
-rw-r--r--ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoContainerView.swift8
1 files changed, 2 insertions, 6 deletions
diff --git a/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoContainerView.swift b/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoContainerView.swift
index 1247930dfa..df09e5690a 100644
--- a/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoContainerView.swift
+++ b/ios/MullvadVPN/Coordinators/Settings/Views/SettingsInfoContainerView.swift
@@ -16,16 +16,12 @@ struct SettingsInfoContainerView<Content: View>: View {
}
var body: some View {
- ZStack {
- List {
+ ScrollView {
+ VStack {
content
- .listRowInsets(EdgeInsets())
- .listRowSeparator(.hidden)
- .listRowBackground(Color(.secondaryColor))
.padding(.top, UIMetrics.contentInsets.top)
.padding(.bottom, UIMetrics.contentInsets.bottom)
}
- .listStyle(.plain)
}
.background(Color(.secondaryColor))
}