func commands<Content>(content: () -> Content) -> some Scene
Adds commands to the scene.
コマンドをシーンに加えます。
func defaultAppStorage (UserDefaults ) -> some Scene
The default store used by
AppStorage
contained within the scene and its view content.
シーンとそれのビュー内容内に含まれるAppStorage
によって使われる省略時記憶装置(デフォルトストア)。
func handlesExternalEvents (matching: Set<String>) -> some Scene
Specifies a modifier to indicate if this Scene can be used when creating a new Scene for the received External Event.
受け取ったExternal Event(外部イベント)に対して新しいシーンを作成する時にこのシーンが使われることが可能かどうかを指し示すある修飾子を指定します。
func onChange <V>(of: V, perform: (V) -> Void) -> some Scene
Adds an action to perform when the given value changes.
与えられた値が変化する時に実行するアクションを加えます。
func windowStyle <S>(S) -> some Scene
Sets the style for windows created by this scene.
このシーンによって作成されたウインドウに対してスタイルを設定します。
func windowToolbarStyle <S>(S) -> some Scene
Sets the style for the toolbar defined within this scene.
このシーン内部に定義されるツールバーに対してスタイルを設定します。