For the complete documentation index, see llms.txt. This page is also available as Markdown.

Phases

SwiftUIEmbeddingPhase

SwiftUIEmbeddingPhase は SwiftUI 埋め込み読み込み状態です。

public enum SwiftUIEmbeddingPhase {
    case loading
    case completed(AnyView)
    case notFound
    case failed(Error)
}

UIKitEmbeddingPhase

UIKitEmbeddingPhase は UIKit 埋め込み読み込み状態です。

public enum UIKitEmbeddingPhase {
    case loading
    case completed(UIView)
    case notFound
    case failed(Error)
}

RemoteConfigPhase

RemoteConfigPhase は Remote Config 読み込み状態です。

Last updated