generated from aheze/SupportDocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupportOptions.swift
executable file
·57 lines (54 loc) · 2.24 KB
/
SupportOptions.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// SupportOptions.swift
// SupportDocsExamplesSwiftUI
//
// Created by H. Kamran on 11/11/20.
//
import SwiftUI
import SupportDocs
struct SupportOptionsExample: View {
let dataSource = URL(string: "https://raw.githubusercontent.com/aheze/SupportDocs/DataSource/_data/supportdocs_datasource.json")!
let options = SupportOptions(
categories: [
.init(tag: "boba", displayName: "Boba is awesome!")
],
navigationBar: .init(
title: "Support",
titleColor: UIColor.white,
dismissButtonTitle: "Done",
buttonTintColor: UIColor.white,
backgroundColor: UIColor(red: 6 / 255, green: 151 / 255, blue: 0 / 255, alpha: 1)
),
searchBar: .init(
placeholder: "Type here to search",
placeholderColor: UIColor.white.withAlphaComponent(0.75),
textColor: UIColor.white,
tintColor: UIColor.green,
backgroundColor: UIColor.white.withAlphaComponent(0.3),
clearButtonMode: .whileEditing
),
progressBar: .init(
foregroundColor: UIColor.green,
backgroundColor: UIColor.systemBackground
),
listStyle: .insetGroupedListStyle,
navigationViewStyle: .defaultNavigationViewStyle,
other: .init(
activityIndicatorStyle: UIActivityIndicatorView.Style.large,
welcomeView: AnyView(WelcomeView()), /// find this inside https://github.com/aheze/SupportDocs/blob/main/Example/Example/WelcomeView.swift
footer: AnyView(Footer()), /// find this inside https://github.com/aheze/SupportDocs/blob/main/Example/Example/Footer.swift
error404: URL(string: "https://aheze.github.io/SupportDocs/404")!
)
)
@State var supportDocsPresented: Bool = false
var body: some View {
VStack {
Button("Present SupportDocs from SwiftUI!") { supportDocsPresented = true }
.sheet(isPresented: $supportDocsPresented, content: {
SupportDocsView(dataSource: dataSource, options: options, isPresented: $supportDocsPresented)
})
Text("SwiftUIExampleView.swift")
.foregroundColor(Color(UIColor.secondaryLabel))
}
}
}