SwiftUI/ボタン
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(SwiftUI/ボタン);
*目次 [#u395849d]
#contents
*関連ページ [#m46199fe]
*参考情報 [#w062f22e]
-[[SwiftUIのButtonでテキストのみ、テキスト+画像のボタンを...
*いろいろなボタン [#l8debee5]
**テキストのみ [#o125c285]
-普通に作る。
#pre{{
Button("Button") {
// action
}
}}
**テキスト+画像 [#f9636bbc]
-横並びの場合。
#pre{{
Button(action: {
// action
}) {
HStack {
Image(systemName: "suit.heart.fill")
Text("Button")
}
}
}}
-縦並びの場合。
#pre{{
Button(action: {
// action
}) {
VStack {
Image(systemName: "suit.heart.fill")
Text("Button")
}
}
}}
終了行:
&tag(SwiftUI/ボタン);
*目次 [#u395849d]
#contents
*関連ページ [#m46199fe]
*参考情報 [#w062f22e]
-[[SwiftUIのButtonでテキストのみ、テキスト+画像のボタンを...
*いろいろなボタン [#l8debee5]
**テキストのみ [#o125c285]
-普通に作る。
#pre{{
Button("Button") {
// action
}
}}
**テキスト+画像 [#f9636bbc]
-横並びの場合。
#pre{{
Button(action: {
// action
}) {
HStack {
Image(systemName: "suit.heart.fill")
Text("Button")
}
}
}}
-縦並びの場合。
#pre{{
Button(action: {
// action
}) {
VStack {
Image(systemName: "suit.heart.fill")
Text("Button")
}
}
}}
ページ名: