@@ -17,7 +17,7 @@ struct ControlBasicView: View {
17
17
var body : some View {
18
18
Group {
19
19
VStack ( alignment: . leading, spacing: 8 ) {
20
- Text ( " ● AxisMode " ) . opacity ( 0.5 )
20
+ Text ( " ● AxisMode " ) . opacity ( 0.5 ) . font ( . caption )
21
21
Picker ( selection: $constant. axisMode) {
22
22
Text ( " Top " )
23
23
. tag ( ATAxisMode . top)
@@ -32,7 +32,7 @@ struct ControlBasicView: View {
32
32
}
33
33
34
34
VStack ( alignment: . leading, spacing: 8 ) {
35
- Text ( " ● Screen Transition " ) . opacity ( 0.5 )
35
+ Text ( " ● Screen Transition " ) . opacity ( 0.5 ) . font ( . caption )
36
36
Picker ( selection: $constant. screen. transitionMode) {
37
37
Text ( " Slide " )
38
38
. tag ( ATTransitionMode . slide ( 50 ) )
@@ -54,7 +54,7 @@ struct ControlBasicView: View {
54
54
. padding ( . horizontal)
55
55
}
56
56
VStack ( alignment: . leading, spacing: 8 ) {
57
- Text ( " ● Tab Normal Size " ) . opacity ( 0.5 )
57
+ Text ( " ● Tab Normal Size " ) . opacity ( 0.5 ) . font ( . caption )
58
58
HStack {
59
59
Text ( " W " ) . frame ( width: 24 , alignment: . leading)
60
60
Spacer ( )
@@ -73,7 +73,7 @@ struct ControlBasicView: View {
73
73
. padding ( . leading)
74
74
}
75
75
VStack ( alignment: . leading, spacing: 8 ) {
76
- Text ( " ● Tab Select Width " ) . opacity ( 0.5 )
76
+ Text ( " ● Tab Select Width " ) . opacity ( 0.5 ) . font ( . caption )
77
77
HStack {
78
78
Text ( " W " ) . frame ( width: 24 , alignment: . leading)
79
79
Spacer ( )
@@ -85,7 +85,7 @@ struct ControlBasicView: View {
85
85
. padding ( . leading)
86
86
}
87
87
VStack ( alignment: . leading, spacing: 8 ) {
88
- Text ( " ● Tab Spacing " ) . opacity ( 0.5 )
88
+ Text ( " ● Tab Spacing " ) . opacity ( 0.5 ) . font ( . caption )
89
89
Picker ( selection: $constant. tab. spacingMode) {
90
90
Text ( " Center " )
91
91
. tag ( ATSpacingMode . center)
0 commit comments