Skip to content

Commit d2922ae

Browse files
committed
Replace section inits.
1 parent 2da1dc8 commit d2922ae

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

Shared/Supporting Files/Views/AboutView.swift

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,24 @@ struct AboutView: View {
4444
LabeledContent("Version", value: Bundle.main.shortVersion)
4545
LabeledContent("SDK Version", value: arcGISVersion)
4646
}
47-
Section(header: Text("Powered By")) {
47+
Section("Powered By") {
4848
Link("ArcGIS Maps SDK for Swift Toolkit", destination: .toolkit)
4949
Link("ArcGIS Maps SDK for Swift", destination: .developers)
5050
}
51-
Section(footer: Text("Browse and discuss in the Esri Community.")) {
51+
Section {
5252
Link("Esri Community", destination: .esriCommunity)
53+
} footer: {
54+
Text("Browse and discuss in the Esri Community.")
5355
}
54-
Section(footer: Text("Log an issue in the GitHub repository.")) {
56+
Section {
5557
Link("GitHub Repository", destination: .githubRepository)
58+
} footer: {
59+
Text("Log an issue in the GitHub repository.")
5660
}
57-
Section(footer: Text("View details about the API.")) {
61+
Section {
5862
Link("API Reference", destination: .apiReference)
63+
} footer: {
64+
Text("View details about the API.")
5965
}
6066
}
6167
.navigationTitle("About")

0 commit comments

Comments
 (0)