-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContentView.swift
More file actions
80 lines (67 loc) · 2.81 KB
/
ContentView.swift
File metadata and controls
80 lines (67 loc) · 2.81 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
import SwiftUI
struct ContentView: View {
// ============================================================================ //
// MARK: Configuration
// ============================================================================ //
let onHookToggled: (HookExample, Bool) -> Void
let onWindowTitleChanged: (String) -> Void
// ============================================================================ //
// MARK: State
// ============================================================================ //
@State
private var hookStates = Dictionary(
uniqueKeysWithValues: HookExample.allCases.map { ($0, false) }
)
@State
private var windowTitle = "InterposeKit Example"
// ============================================================================ //
// MARK: View Body
// ============================================================================ //
var body: some View {
VStack {
Form {
Section("Hooks") {
ForEach(HookExample.allCases, id: \.self) { example in
let isOn = Binding(
get: { self.hookStates[example] ?? false },
set: { newValue in
self.hookStates[example] = newValue
self.onHookToggled(example, newValue)
}
)
LabeledContent {
Toggle("", isOn: isOn)
.toggleStyle(.switch)
.labelsHidden()
.padding(.leading, 20)
} label: {
Text(example.selector)
.monospaced()
.foregroundStyle(Color(NSColor.labelColor))
Text(example.description)
.font(.subheadline)
}
}
}
}
.formStyle(.grouped)
LabeledContent("Window Title:") {
TextField("", text: self.$windowTitle)
.onSubmit {
self.onWindowTitleChanged(self.windowTitle)
}
Button {
self.onWindowTitleChanged(self.windowTitle)
} label: {
Text("Set").padding(.horizontal, 4)
}
}
.padding(.horizontal, 20)
.padding(.bottom, 28)
}
.fixedSize()
.onAppear {
self.onWindowTitleChanged(self.windowTitle)
}
}
}