SwiftUI/macOS
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(SwiftUI/macOS);
*目次 [#l8dc9932]
#contents
*関連ページ [#i6957fb4]
*参考情報 [#g770025b]
-[[SwiftUI macOS アプリの作成からビルドしてapp作成 | Glob...
-[[macOS SwiftUIプログラミング / 初めの一歩:https://vivac...
*基本 [#w46106f6]
**プロジェクト作成 [#q2770f5a]
-新規「macOS > App」を作成。
-フレームワークでSwiftUIを指定。
-実行すると「Hello World」という文字列を囲んだだけの小さ...
*Tips [#g153a35f]
**起動時のウィンドウのサイズ変更 [#j5b96754]
-デフォルトのHello Worldを表示するだけのプログラムの場合x...
#pre{{
struct swiftuidemoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(maxWidth: .infinity, maxHeight: .i...
// .frame(minWidth: 800, maxWidth: .infini...
}
}
}
}}
-maxWidth、maxHeightを.infinity(無限大)に設定するとなぜか...
**ツールバー [#mb1e6a6d]
-以下のような感じで、toolbar Modifierを使用する
#pre{{
struct ContentView: View {
private let url = "https://www.apple.com"
var body: some View {
WebView(url: url).toolbar {
ToolbarItemGroup(placement: .primaryAction) {
Button(action: {
}, label: {
Image(systemName: "sidebar.left").ima...
})
}
}
}
}
}}
** systemNameで指定できるアイコンの名前 [#m0ad28ce]
-[[SwiftUI Image(systemName:)で使用するアイコン名の一覧 -...
-[[SF Symbols - Foundations - Human Interface Guidelines ...
終了行:
&tag(SwiftUI/macOS);
*目次 [#l8dc9932]
#contents
*関連ページ [#i6957fb4]
*参考情報 [#g770025b]
-[[SwiftUI macOS アプリの作成からビルドしてapp作成 | Glob...
-[[macOS SwiftUIプログラミング / 初めの一歩:https://vivac...
*基本 [#w46106f6]
**プロジェクト作成 [#q2770f5a]
-新規「macOS > App」を作成。
-フレームワークでSwiftUIを指定。
-実行すると「Hello World」という文字列を囲んだだけの小さ...
*Tips [#g153a35f]
**起動時のウィンドウのサイズ変更 [#j5b96754]
-デフォルトのHello Worldを表示するだけのプログラムの場合x...
#pre{{
struct swiftuidemoApp: App {
var body: some Scene {
WindowGroup {
ContentView()
.frame(maxWidth: .infinity, maxHeight: .i...
// .frame(minWidth: 800, maxWidth: .infini...
}
}
}
}}
-maxWidth、maxHeightを.infinity(無限大)に設定するとなぜか...
**ツールバー [#mb1e6a6d]
-以下のような感じで、toolbar Modifierを使用する
#pre{{
struct ContentView: View {
private let url = "https://www.apple.com"
var body: some View {
WebView(url: url).toolbar {
ToolbarItemGroup(placement: .primaryAction) {
Button(action: {
}, label: {
Image(systemName: "sidebar.left").ima...
})
}
}
}
}
}}
** systemNameで指定できるアイコンの名前 [#m0ad28ce]
-[[SwiftUI Image(systemName:)で使用するアイコン名の一覧 -...
-[[SF Symbols - Foundations - Human Interface Guidelines ...
ページ名: