Instance Method
インスタンスメソッド
controlSize(_:)
Sets the size for controls within this view.
このビュー内のコントロールそれらに対する大きさを設定します。
Parameters
パラメータ
controlSize
One of the control sizes specified in the ControlSize
enumeration.
Discussion
議論
Use controlSize(_:)
to override the system default size for controls in this view. In this example, a view displays several typical controls at .mini
, .small
and .regular
sizes.
struct ControlSize: View {
var body: some View {
VStack {
MyControls(label: "Mini")
.controlSize(.mini)
MyControls(label: "Small")
.controlSize(.small)
MyControls(label: "Regular")
.controlSize(.regular)
}
.padding()
.frame(width: 450)
.border(Color.gray)
}
}
struct MyControls: View {
var label: String
@State private var value = 3.0
@State private var selected = 1
var body: some View {
HStack {
Text(label + ":")
Picker("Selection", selection: $selected) {
Text("option 1").tag(1)
Text("option 2").tag(2)
Text("option 3").tag(3)
}
Slider(value: $value, in: 1...10)
Button("OK") { }
}
}
}
See Also
参照
Control Configuration
func horizontalRadioGroupLayout() -> some View
Sets the style for radio group style pickers within this view to be horizontally positioned with the radio buttons inside the layout.
ラジオグループ形式ピッカーに対するスタイルをこのビュー内で設定します、そのレイアウト(割り付け)内でラジオボタンが水平に置かれるようにします。