Skip to content

Commit 54ab87e

Browse files
committed
SwiftUI toolbar research
1 parent c8aba3d commit 54ab87e

File tree

15 files changed

+651
-0
lines changed

15 files changed

+651
-0
lines changed

Notes/SwiftUIToolbars/README.md

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# SwiftUI Toolbar
2+
The system might present the toolbar above or below your app's contents.
3+
Add items to a toolbar by using **toolbar(content:) view modifier**.
4+
5+
**toolbar(content:)**
6+
7+
Populates the toolbar or navigation bar with views you provide.
8+
9+
Use this modifier to add content /views to the toolbar.
10+
11+
The toolbar modifier expects a collection of toolbar items, that you can provide either by **supplying a collection of views with each view wrapped in a ToolbarItem**, or by providing a collection of views as a **ToolbarItemGroup**.
12+
```swift
13+
14+
//NotePadView.swift
15+
16+
struct NotePadView: View {
17+
@State var notes: String = "Brown white fox entered the shed"
18+
@State var bold: Bool = false
19+
@State var italic: Bool = false
20+
@State var fontSize: Double = 12.5
21+
22+
var displayFont: Font {
23+
let font = Font.system(size: CGFloat(fontSize),
24+
weight: bold == true ? .bold : .regular)
25+
return italic == true ? font.italic() : font
26+
}
27+
28+
var body: some View {
29+
VStack {
30+
TextEditor(text: $notes)
31+
.font(displayFont)
32+
}
33+
.toolbar {
34+
ToolbarItemGroup {
35+
Slider(value: $fontSize,
36+
in: 8...125,
37+
minimumValueLabel: Text("A"),
38+
maximumValueLabel: Text("B"))
39+
{
40+
Text("Font Size")
41+
}
42+
.frame(width: 150)
43+
44+
Toggle("Bold", isOn: $bold)
45+
46+
Toggle("Italic", isOn: $italic)
47+
}
48+
}
49+
.navigationTitle("Toolbar Lab")
50+
.padding()
51+
}
52+
}
53+
```
54+
55+
![Toolbar Sample: Fonts](../../toolbar_brown_fox.png)

0 commit comments

Comments
 (0)