diff --git a/Package.resolved b/Package.resolved new file mode 100644 index 0000000..dde829e --- /dev/null +++ b/Package.resolved @@ -0,0 +1,52 @@ +{ + "object": { + "pins": [ + { + "package": "BitmovinAnalytics", + "repositoryURL": "https://github.com/bitmovin/bitmovin-analytics-collector-ios.git", + "state": { + "branch": null, + "revision": "3feebb1db5f6bc2d3ad0b7241f3baea523e9ab9e", + "version": "3.6.0" + } + }, + { + "package": "BitmovinPlayer", + "repositoryURL": "https://github.com/bitmovin/player-ios.git", + "state": { + "branch": null, + "revision": "31ed8a5fb931bd600c5e1ca6d19c17d77762b56b", + "version": "3.56.1" + } + }, + { + "package": "BitmovinPlayerCore", + "repositoryURL": "https://github.com/bitmovin/player-ios-core.git", + "state": { + "branch": null, + "revision": "7a2742ff415a7423fd62c0ed23fe1c9ca8fcaa9f", + "version": "3.56.1" + } + }, + { + "package": "SwiftDocCPlugin", + "repositoryURL": "https://github.com/apple/swift-docc-plugin", + "state": { + "branch": null, + "revision": "26ac5758409154cc448d7ab82389c520fa8a8247", + "version": "1.3.0" + } + }, + { + "package": "SymbolKit", + "repositoryURL": "https://github.com/apple/swift-docc-symbolkit", + "state": { + "branch": null, + "revision": "b45d1f2ed151d057b54504d653e0da5552844e34", + "version": "1.0.0" + } + } + ] + }, + "version": 1 +} diff --git a/Package.swift b/Package.swift index a4a7767..9be6c14 100644 --- a/Package.swift +++ b/Package.swift @@ -21,7 +21,11 @@ let package = Package( // BitmovinPlayer .package(name: "BitmovinPlayer", url: "https://github.com/bitmovin/player-ios.git", - .exact("3.56.1")) + .exact("3.56.1")), + + // other dependencies + .package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0") + ], targets: [ // Targets are the basic building blocks of a package, defining a module or a test suite. diff --git a/Sources/PlaybackSDK/Article.md b/Sources/PlaybackSDK/Article.md deleted file mode 100644 index fd6b885..0000000 --- a/Sources/PlaybackSDK/Article.md +++ /dev/null @@ -1,32 +0,0 @@ -# Folder structure - -Summary - -## Overview - -Text - -### Section header - -Text - -PlaybackSDK/ -├── PlayBackAPI/ -│ ├── PlayBackAPI.h -│ ├── PlayBackAPIService.h -│ └── PlaybackResponseModel.h -├── PlaybackConfigurationAPI/ -│ ├── PlayerInformationAPI.h -│ ├── PlayerInformationAPIService.h -│ └── PlayerInformationResponseModel.h -├── PlayerPlugin/ -│ ├── Bitmovin/ -│ │ ├── BitmovinPlayerPlugin.h -│ │ └── BitMovinPlayerView.h -│ ├── VideoPlayerPlugin.h -│ └── VideoPlayerPluginManager.h -└── PlayerUIView/ - ├── PlaybackUIView.h - ├── UtilsUIView.h - └── BitMovinPlayerView.h -PlayBackSDKManager.h diff --git a/Sources/PlaybackSDK/Documentation.docc/Resources/InitializeSdkExample.swift b/Sources/PlaybackSDK/Documentation.docc/Resources/InitializeSdkExample.swift new file mode 100644 index 0000000..49a8ca4 --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Resources/InitializeSdkExample.swift @@ -0,0 +1,17 @@ +// +// InitializeSdkExample.swift +// +// +// Created by Franco Driansetti on 27/02/2024. +// + +import PlaybackSDK + +PlaybackSDKManager.shared.initialize(apiKey: "YOUR_API_KEY") { result in + switch result { + case .success: + print("Playback SDK initialized successfully.") + case .failure(let error): + print("Error initializing Playback SDK: \(error)") + } +} diff --git a/Sources/PlaybackSDK/Documentation.docc/Resources/InstallPlayerPluginTutorial.swift b/Sources/PlaybackSDK/Documentation.docc/Resources/InstallPlayerPluginTutorial.swift new file mode 100644 index 0000000..e8f4ab2 --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Resources/InstallPlayerPluginTutorial.swift @@ -0,0 +1,22 @@ +// +// InstallPlayerPluginTutorial.swift +// +// +// Created by Franco Driansetti on 27/02/2024. +// + +import Foundation + +PlayBackSDKManager.shared.initialize(apiKey: settingsManager.apiKey, baseURL: settingsManager.baseURL) { result in + switch result { + case .success(let license): + print("SDK initialized with license: \(license)") + + // Add player plugin + let bitmovinPlugin = BitmovinPlayerPlugin() + VideoPlayerPluginManager.shared.registerPlugin(bitmovinPlugin) + + case .failure(let error): + print("SDK initialization failed with error: \(error)") + } +} diff --git a/Sources/PlaybackSDK/Documentation.docc/Resources/LoadHlsStreamTutorial.swift b/Sources/PlaybackSDK/Documentation.docc/Resources/LoadHlsStreamTutorial.swift new file mode 100644 index 0000000..62b04cd --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Resources/LoadHlsStreamTutorial.swift @@ -0,0 +1,26 @@ +// +// LoadHlsStreamTutorial.swift +// +// +// Created by Franco Driansetti on 27/02/2024. +// + +import Foundation + +import SwiftUI + +internal struct ContentView: View { + let entryId = "YOUR_ENTRY_ID" + let authorizationToken = "YOUR_AUTHORIZATION_TOKEN" // optional + + + var body: some View { + PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken) + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/Sources/PlaybackSDK/Documentation.docc/Resources/LoadPlayerViewTutorial.swift b/Sources/PlaybackSDK/Documentation.docc/Resources/LoadPlayerViewTutorial.swift new file mode 100644 index 0000000..0df153c --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Resources/LoadPlayerViewTutorial.swift @@ -0,0 +1,18 @@ +// +// LoadPlayerViewTutorial.swift +// +// +// Created by Franco Driansetti on 27/02/2024. +// + +import Foundation + +PlayBackSDKManager.shared.loadPlayer(entryID: settingsManager.entryId, authorizationToken: settingsManager.authorizationToken, onError: { error in + // Handle the error here + switch error { + case .apiError(let statusCode, _): + print("\(statusCode)") + default: + print("Error loading HLS stream in PlaybackUIView: \(error.localizedDescription)") + } +}) diff --git a/Sources/PlaybackSDK/Documentation.docc/Resources/ios-marketing.png b/Sources/PlaybackSDK/Documentation.docc/Resources/ios-marketing.png new file mode 100644 index 0000000..2e33d0e Binary files /dev/null and b/Sources/PlaybackSDK/Documentation.docc/Resources/ios-marketing.png differ diff --git a/Sources/PlaybackSDK/Documentation.docc/Tutorial/CustomPluginTutorial.tutorial b/Sources/PlaybackSDK/Documentation.docc/Tutorial/CustomPluginTutorial.tutorial new file mode 100644 index 0000000..6f1104c --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Tutorial/CustomPluginTutorial.tutorial @@ -0,0 +1,72 @@ +@Tutorial(time: 30) { + @Intro(title: "Playback SDK Overview") { + Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic. + + **Key Features:** + + - **Abstraction:** Hides the complexities of underlying video APIs, allowing you to focus on the core playback experience. + - **Flexibility:** Supports different video providers and allows the creation of custom playback plugins for extended functionalities. + - **Error Handling:** Provides mechanisms to handle potential issues during playback and notify your application. + } + + @Section(title: "Video Player Plugins (Optional)") { + @ContentAndMedia { + The Playback SDK supports extending functionalities through custom video player plugins. These plugins can provide extended functionalities or integrate with third-party video players. Refer to the full source code for details on creating custom plugins. + + ```swift + // Implement your custom player plugin conforming to VideoPlayerPlugin protocol + + // Register your custom plugin with the manager + let pluginManager = VideoPlayerPluginManager.shared + pluginManager.registerPlugin(YourCustomPlayerPlugin()) + // Use the selected plugin for playback + pluginManager.selectedPlugin?.play() + ``` + + @Image(source: "custom_plugin.png", alt: "Custom Video Player Plugin") + } + + @Steps { + @Step { + **Step 1:** Implement your custom player plugin conforming to the `VideoPlayerPlugin` protocol. + + @Image(source: "custom_plugin_step1.png", alt: "Implement Custom Plugin") + } + + @Step { + **Step 2:** Register your custom plugin with the manager and use the selected plugin for playback. + + @Image(source: "custom_plugin_step2.png", alt: "Register Custom Plugin") + @Code(name: "RegisterAndUsePlugin", file: RegisterAndUsePlugin.swift) + } + } + } + + @Section(title: "Error Handling") { + @ContentAndMedia { + The library propagates errors through completion handlers. You can handle these errors to provide appropriate feedback to the user. + + **Example:** + + Swift + + ``` + PlaybackSDKManager.shared.initialize(apiKey: "YOUR_API_KEY") { result in + switch result { + case .success: + print("Playback SDK initialized successfully.") + + let entryId = "YOUR_ENTRY_ID" + let authorizationToken = "YOUR_AUTHORIZATION_TOKEN" // optional + + PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken) + case .failure(let error): + print("Error initializing Playback SDK: \(error)") + } + } + ``` + + @Image(source: "error_handling.png", alt: "Error Handling") + } + } +} diff --git a/Sources/PlaybackSDK/Documentation.docc/Tutorial/GetStarted.tutorial b/Sources/PlaybackSDK/Documentation.docc/Tutorial/GetStarted.tutorial new file mode 100644 index 0000000..5ea0332 --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Tutorial/GetStarted.tutorial @@ -0,0 +1,120 @@ +@Tutorial(time: 30) { + @Intro(title: "Playback SDK Overview") { + Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic. + + **Key Features:** + + - **Abstraction:** Hides the complexities of underlying video APIs, allowing you to focus on the core playback experience. + - **Flexibility:** Supports different video providers and allows the creation of custom playback plugins for extended functionalities. + - **Error Handling:** Provides mechanisms to handle potential issues during playback and notify your application. + } + + @Section(title: "Installation") { + @ContentAndMedia { + To install the Playback SDK, follow these steps: + + 1. Add the Playback SDK dependency to your project using Swift Package Manager. + + Swift + + ``` + dependencies: [ + .package(url: "https://github.com/your-organization/playback-sdk.git", .branch("master")) + ] + ``` + + 2. Import the `PlaybackSDK` module in your Swift files. + + Swift + + ``` + import PlaybackSDK + ``` + } + + @Steps { + @Step { + **Step 1:** Initialize the Playback SDK by providing your API key. + + @Code(name: "InitializeSdkExample", file: InitializeSdkExample.swift) + } + + @Step { + **Step 2:** Load HLS Stream by providing the entry ID and optional authorization token. + + @Code(name: "LoadHlsStreamTutorial", file: LoadHlsStreamTutorial.swift) + } + + @Step { + **Step 3:** Add player plugin. Note: This should be done in the AppDelegate. + @Code(name: "InstallPlayerPluginTutorial", file: InstallPlayerPluginTutorial.swift) + } + + @Step { + **Step 4:** Load the player view in your player view and handle errors. + @Code(name: "LoadPlayerViewTutorial", file: LoadPlayerViewTutorial.swift) + } + } + } + + @Section(title: "Video Player Plugins (Optional)") { + @ContentAndMedia { + The Playback SDK supports extending functionalities through custom video player plugins. These plugins can provide extended functionalities or integrate with third-party video players. Refer to the full source code for details on creating custom plugins. + + ```swift + // Implement your custom player plugin conforming to VideoPlayerPlugin protocol + + // Register your custom plugin with the manager + let pluginManager = VideoPlayerPluginManager.shared + pluginManager.registerPlugin(YourCustomPlayerPlugin()) + // Use the selected plugin for playback + pluginManager.selectedPlugin?.play() + ``` + + @Image(source: "custom_plugin.png", alt: "Custom Video Player Plugin") + } + + @Steps { + @Step { + **Step 1:** Implement your custom player plugin conforming to the `VideoPlayerPlugin` protocol. + + @Image(source: "custom_plugin_step1.png", alt: "Implement Custom Plugin") + } + + @Step { + **Step 2:** Register your custom plugin with the manager and use the selected plugin for playback. + + @Image(source: "custom_plugin_step2.png", alt: "Register Custom Plugin") + @Code(name: "RegisterAndUsePlugin", file: RegisterAndUsePlugin.swift) + } + } + } + + @Section(title: "Error Handling") { + @ContentAndMedia { + The library propagates errors through completion handlers. You can handle these errors to provide appropriate feedback to the user. + + **Example:** + + Swift + + ``` + PlaybackSDKManager.shared.initialize(apiKey: "YOUR_API_KEY") { result in + switch result { + case .success: + print("Playback SDK initialized successfully.") + + let entryId = "YOUR_ENTRY_ID" + let authorizationToken = "YOUR_AUTHORIZATION_TOKEN" // optional + + PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken) + case .failure(let error): + print("Error initializing Playback SDK: \(error)") + } + } + ``` + + @Image(source: "error_handling.png", alt: "Error Handling") + } + } +} diff --git a/Sources/PlaybackSDK/Documentation.docc/Tutorial/Table Of Contents.tutorial b/Sources/PlaybackSDK/Documentation.docc/Tutorial/Table Of Contents.tutorial new file mode 100644 index 0000000..7c10c4b --- /dev/null +++ b/Sources/PlaybackSDK/Documentation.docc/Tutorial/Table Of Contents.tutorial @@ -0,0 +1,32 @@ +@Tutorials(name: "PlaybackSDK Tutorial") { + @Intro(title: "Introduction to PlaybackSDK") { + Welcome to the PlaybackSDK tutorial! In this tutorial, you will learn how to integrate and use the PlaybackSDK in your iOS applications. + } + + @Chapter(name: "Getting Started") { + In this chapter, we'll start by setting up the PlaybackSDK in your Xcode project and understanding its basic components. + + @Image(source: "ios-marketing.png", alt: "Getting Started with PlaybackSDK") + + @TutorialReference(tutorial: "doc:GetStarted") + } + + @Chapter(name: "Creating a Custom Playback Player Plugin") { + In this chapter, we'll learn how to create a custom Playback Player Plugin using your favorite video player. + + @Image(source: "ios-marketing.png", alt: "Creating a Custom Playback Player Plugin") + + @TutorialReference(tutorial: "doc:CustomPluginTutorial") + } + + @Resources { + Explore more resources for learning about PlaybackSDK. + + @Documentation { + Browse and search the PlaybackSDK documentation. + + - [GitHub Repository](https://github.com/StreamAMG/playback-sdk-ios/tree/main) + - [Stoplight Documentation](https://streamamg.stoplight.io) + } + } +} diff --git a/Sources/PlaybackSDK/Folder Structure.md b/Sources/PlaybackSDK/Folder Structure.md new file mode 100644 index 0000000..8234506 --- /dev/null +++ b/Sources/PlaybackSDK/Folder Structure.md @@ -0,0 +1,41 @@ +# Folder structure + +PlaybackSDK/ + +├── PlayBackAPI/ + +│   ├── PlayBackAPI.h + +│   ├── PlayBackAPIService.h + +│   └── PlaybackResponseModel.h + +├── PlaybackConfigurationAPI/ + +│   ├── PlayerInformationAPI.h + +│   ├── PlayerInformationAPIService.h + +│   └── PlayerInformationResponseModel.h + +├── PlayerPlugin/ + +│   ├── Bitmovin/ + +│   │   ├── BitmovinPlayerPlugin.h + +│   │   └── BitMovinPlayerView.h + +│   ├── VideoPlayerPlugin.h + +│   └── VideoPlayerPluginManager.h + +└── PlayerUIView/ + +    ├── PlaybackUIView.h + +    ├── UtilsUIView.h + +    └── BitMovinPlayerView.h + +PlayBackSDKManager.h diff --git a/Sources/PlaybackSDK/PlayBack API/PlayBackAPI.swift b/Sources/PlaybackSDK/PlayBack API/PlayBackAPI.swift index 5d6af1a..eef51c0 100644 --- a/Sources/PlaybackSDK/PlayBack API/PlayBackAPI.swift +++ b/Sources/PlaybackSDK/PlayBack API/PlayBackAPI.swift @@ -8,21 +8,6 @@ import Foundation import Combine -/** - Define the errors that can occur during API interactions - */ -public enum PlayBackAPIError: Error { - - case invalidResponsePlaybackData - case invalidPlaybackDataURL - case invalidPlayerInformationURL - case initializationError - case loadHLSStreamError - - case networkError(Error) - case apiError(statusCode: Int, message: String) -} - /** Protocol defining the methods required to interact with the Playback API. */ diff --git a/Sources/PlaybackSDK/PlayBackSDKManager.swift b/Sources/PlaybackSDK/PlayBackSDKManager.swift index c7b5c91..1067a5e 100644 --- a/Sources/PlaybackSDK/PlayBackSDKManager.swift +++ b/Sources/PlaybackSDK/PlayBackSDKManager.swift @@ -10,14 +10,30 @@ import Combine import SwiftUI // Errors.swift -// Define custom error types for SDK-related errors +// Define custom error types for SDK-related errors public enum SDKError: Error { + case initializationError + case missingLicense + case loadHLSStreamError +} + +/** + Define the errors that can occur during API interactions + */ +public enum PlayBackAPIError: Error { + + case invalidResponsePlaybackData + case invalidPlaybackDataURL + case invalidPlayerInformationURL case initializationError - case missingLicense case loadHLSStreamError + + case networkError(Error) + case apiError(statusCode: Int, message: String) } + /// Singleton responsible for initializing the SDK and managing player information public class PlayBackSDKManager { @@ -109,7 +125,7 @@ public class PlayBackSDKManager { }, receiveValue: { playerInfo in // Print the received player information print("Received player information: \(playerInfo)") - + // Extract the Bitmovin license if playerInfo.player.bitmovin.license.isEmpty { completion(.failure(SDKError.missingLicense)) diff --git a/docs/.htaccess.json b/docs/.htaccess.json new file mode 100644 index 0000000..24996de --- /dev/null +++ b/docs/.htaccess.json @@ -0,0 +1,14 @@ +# Enable custom routing. +RewriteEngine On + +# Route documentation and tutorial pages. +RewriteRule ^(documentation|tutorials)\/.*$ PlaybackSDK.doccarchive/index.html [L] + +# Route files and data for the documentation archive. +# +# If the file path doesn't exist in the website's root ... +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d + +# ... route the request to that file path with the documentation archive. +RewriteRule .* MyNewPackage.doccarchive/$0 [L] diff --git a/docs/PlaybackSDK.doccarchive/css/chunk-c0335d80.10a2f091.css b/docs/PlaybackSDK.doccarchive/css/chunk-c0335d80.10a2f091.css new file mode 100644 index 0000000..86451fd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/chunk-c0335d80.10a2f091.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */[data-v-20945666] .code-listing{background:var(--background,var(--color-code-background));color:var(--text,var(--color-code-plain));border-color:var(--colors-grid,var(--color-grid));border-width:var(--code-border-width,1px);border-style:var(--code-border-style,solid)}[data-v-20945666] .code-listing pre{padding:var(--code-block-style-elements-padding)}[data-v-20945666] .code-listing pre>code{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}[data-v-20945666] *+.code-listing,[data-v-20945666] *+.endpoint-example,[data-v-20945666] *+.inline-image-container,[data-v-20945666] *+aside,[data-v-20945666] *+figure,[data-v-20945666] .code-listing+*,[data-v-20945666] .endpoint-example+*,[data-v-20945666] .inline-image-container+*,[data-v-20945666] aside+*,[data-v-20945666] figure+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-20945666] *+dl,[data-v-20945666] dl+*{margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] img{display:block;margin:auto;max-width:100%}[data-v-20945666] ol,[data-v-20945666] ol li:not(:first-child),[data-v-20945666] ul,[data-v-20945666] ul li:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){[data-v-20945666] ol,[data-v-20945666] ul{margin-left:1.25rem}}[data-v-20945666] dt:not(:first-child){margin-top:var(--spacing-stacked-margin-large)}[data-v-20945666] dd{margin-left:2em}.badge[data-v-8d6893ae]{--badge-color:var(--color-badge-default);--badge-dark-color:var(--color-badge-dark-default);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;padding:2px 10px;white-space:nowrap;background:none;border-radius:var(--badge-border-radius,calc(var(--border-radius, 4px) - 1px));border-style:var(--badge-border-style,solid);border-width:var(--badge-border-width,1px);margin-left:10px;color:var(--badge-color)}.theme-dark .badge[data-v-8d6893ae]{--badge-color:var(--badge-dark-color)}.badge-deprecated[data-v-8d6893ae]{--badge-color:var(--color-badge-deprecated);--badge-dark-color:var(--color-badge-dark-deprecated)}.badge-beta[data-v-8d6893ae]{--badge-color:var(--color-badge-beta);--badge-dark-color:var(--color-badge-dark-beta)}.topic-icon-wrapper[data-v-03cf3183]{display:flex;align-items:center;justify-content:center;height:1.47059rem;flex:0 0 1.294rem;width:1.294rem;margin-right:1rem}.topic-icon[data-v-03cf3183]{height:.88235rem;transform:scale(1);-webkit-transform:scale(1);overflow:visible}.topic-icon[data-v-03cf3183] img{margin:0;display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.topic-icon.curly-brackets-icon[data-v-03cf3183]{height:1rem}.token-method[data-v-3fd63d6c]{font-weight:700}.token-keyword[data-v-3fd63d6c]{color:var(--syntax-keyword,var(--color-syntax-keywords))}.token-number[data-v-3fd63d6c]{color:var(--syntax-number,var(--color-syntax-numbers))}.token-string[data-v-3fd63d6c]{color:var(--syntax-string,var(--color-syntax-strings))}.attribute-link[data-v-3fd63d6c],.token-attribute[data-v-3fd63d6c]{color:var(--syntax-attribute,var(--color-syntax-keywords))}.token-internalParam[data-v-3fd63d6c]{color:var(--color-syntax-param-internal-name)}.type-identifier-link[data-v-3fd63d6c]{color:var(--syntax-type,var(--color-syntax-other-type-names))}.token-removed[data-v-3fd63d6c]{background-color:var(--color-highlight-red)}.token-added[data-v-3fd63d6c]{background-color:var(--color-highlight-green)}.decorator[data-v-06ec7395],.label[data-v-06ec7395]{color:var(--colors-secondary-label,var(--color-secondary-label))}.label[data-v-06ec7395]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.empty-token[data-v-06ec7395]{font-size:0}.empty-token[data-v-06ec7395]:after{content:"\00a0";font-size:1rem}.conditional-constraints[data-v-1548fd90] code{color:var(--colors-secondary-label,var(--color-secondary-label))}.abstract[data-v-52205924],.link-block[data-v-52205924] .badge{margin-left:2.294rem}.link-block .badge+.badge[data-v-52205924]{margin-left:1rem}.link[data-v-52205924]{display:flex}.link-block .badge[data-v-52205924]{margin-top:.5rem}.link-block.has-inline-element[data-v-52205924]{display:flex;align-items:flex-start;flex-flow:row wrap}.link-block.has-inline-element .badge[data-v-52205924]{margin-left:1rem;margin-top:0}.link-block .has-adjacent-elements[data-v-52205924]{padding-top:5px;padding-bottom:5px;display:inline-flex}.link-block[data-v-52205924],.link[data-v-52205924]{box-sizing:inherit}.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:1rem}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}.link-block.changed.changed[data-v-52205924],.link.changed.changed[data-v-52205924]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.link-block.changed[data-v-52205924],.link.changed[data-v-52205924]{padding-left:0;padding-right:0}}.abstract .topic-required[data-v-52205924]:not(:first-child){margin-top:4px}.topic-required[data-v-52205924]{font-size:.8em}.deprecated[data-v-52205924]{text-decoration:line-through}.conditional-constraints[data-v-52205924]{font-size:.82353rem;margin-top:4px} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/documentation-topic.1d1eec04.css b/docs/PlaybackSDK.doccarchive/css/documentation-topic.1d1eec04.css new file mode 100644 index 0000000..8622bb4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/documentation-topic.1d1eec04.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.betainfo[data-v-e8fd2a92]{font-size:.94118rem;padding:3rem 0;background-color:var(--color-fill-secondary)}.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .betainfo-container[data-v-e8fd2a92]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .betainfo-container[data-v-e8fd2a92]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .betainfo-container[data-v-e8fd2a92]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .betainfo-container[data-v-e8fd2a92]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:692px}}@media only screen and (max-width:735px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .betainfo-container[data-v-e8fd2a92]{width:215px}}.betainfo-label[data-v-e8fd2a92]{font-weight:600;font-size:.94118rem}.betainfo-content[data-v-e8fd2a92] p{margin-bottom:10px}.summary-section[data-v-3aa6f694]:last-of-type{margin-right:0}@media only screen and (max-width:735px){.summary-section[data-v-3aa6f694]{margin-right:0}}.title[data-v-6796f6ea]{color:#fff;font-size:.82353rem;margin-right:.5rem;text-rendering:optimizeLegibility}.documentation-hero--disabled .title[data-v-6796f6ea]{color:var(--colors-text,var(--color-text))}.language[data-v-1a36493d]{padding-bottom:10px;justify-content:flex-end}.language-list[data-v-1a36493d],.language[data-v-1a36493d]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0;display:flex;align-items:center}.language-option.swift[data-v-1a36493d]{padding-right:10px;border-right:1px solid var(--color-fill-gray-tertiary)}.language-option.objc[data-v-1a36493d]{padding-left:10px}.language-option.active[data-v-1a36493d],.language-option.router-link-exact-active[data-v-1a36493d]{color:#ccc}.documentation-hero--disabled .language-option.active[data-v-1a36493d],.documentation-hero--disabled .language-option.router-link-exact-active[data-v-1a36493d]{color:var(--colors-secondary-label,var(--color-secondary-label))}.view-more-link[data-v-0d14b62a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-flow:row-reverse;margin-bottom:1.3rem}.documentation-hero[data-v-6540c364]{background:#000;color:var(--color-documentation-intro-figure,#fff);overflow:hidden;text-align:left;position:relative;padding-right:var(--doc-hero-right-offset)}.documentation-hero[data-v-6540c364]:before{content:"";background:var(--standard-accent-color,var(--color-documentation-intro-fill,#2a2a2a));position:absolute;width:100%;left:0;top:-50%;height:150%;right:0}.documentation-hero[data-v-6540c364]:after{background:transparent;opacity:.7;width:100%;position:absolute;content:"";height:100%;left:0;top:0}.documentation-hero .icon[data-v-6540c364]{position:absolute;margin-top:10px;margin-right:25px;right:0;width:250px;height:calc(100% - 20px);box-sizing:border-box}@media only screen and (max-width:735px){.documentation-hero .icon[data-v-6540c364]{display:none}}.documentation-hero .background-icon[data-v-6540c364]{color:var(--color-documentation-intro-accent,#161616);display:block;width:250px;height:auto;opacity:1;position:absolute;top:50%;left:0;transform:translateY(-50%);max-height:100%}.documentation-hero .background-icon[data-v-6540c364] img,.documentation-hero .background-icon[data-v-6540c364] svg{width:100%;height:100%}.documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-top:2.35294rem;padding-bottom:40px;position:relative;z-index:1}.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:692px}}@media only screen and (max-width:735px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .documentation-hero__content[data-v-6540c364]:not(.minimized-hero){width:215px}}.documentation-hero .minimized-hero[data-v-6540c364]{padding:1.3em 1.4em;position:relative;z-index:1}.documentation-hero__above-content[data-v-6540c364]{position:relative;z-index:1}.documentation-hero--disabled[data-v-6540c364]{background:none;color:var(--colors-text,var(--color-text))}.documentation-hero--disabled[data-v-6540c364]:after,.documentation-hero--disabled[data-v-6540c364]:before{content:none}.short-hero[data-v-6540c364]{padding-top:3.52941rem;padding-bottom:3.52941rem}.extra-bottom-padding[data-v-6540c364]{padding-bottom:3.82353rem}.theme-dark[data-v-6540c364] a:not(.button-cta){color:#09f}ul[data-v-068842ec]{list-style-type:none;margin:0}ul li:first-child .base-link[data-v-068842ec]{margin-top:0}.parent-item .base-link[data-v-068842ec]{font-weight:700}.base-link[data-v-068842ec]{color:var(--color-figure-gray-secondary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:inline-block;margin:5px 0;transition:color .15s ease-in;max-width:100%}.active .base-link[data-v-068842ec]{color:var(--color-text)}.source[data-v-d22a3f50]{background:var(--background,var(--color-code-background));border-color:var(--color-grid);color:var(--text,var(--color-code-plain));border-style:solid;border-width:1px;padding:var(--code-block-style-elements-padding);speak:literal-punctuation;line-height:25px;filter:blur(0)}.source.displays-multiple-lines[data-v-d22a3f50],.source[data-v-d22a3f50]{border-radius:var(--border-radius,4px)}.source>code[data-v-d22a3f50]{font-size:.88235rem;line-height:1.66667;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);display:block}.platforms[data-v-4f51d8d2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:.45rem;margin-top:var(--spacing-stacked-margin-xlarge)}.changed .platforms[data-v-4f51d8d2]{padding-left:.588rem}.platforms[data-v-4f51d8d2]:first-of-type{margin-top:1rem}.source[data-v-4f51d8d2]{margin:var(--declaration-code-listing-margin)}.platforms+.source[data-v-4f51d8d2]{margin:0}.changed.declaration-group[data-v-4f51d8d2]{background:var(--background,var(--color-code-background))}.changed .source[data-v-4f51d8d2]{background:none;border:none;margin-top:0;margin-bottom:0;margin-left:2.17647rem;padding-left:0}.declaration-diff[data-v-b3e21c4a]{background:var(--background,var(--color-code-background))}.declaration-diff-version[data-v-b3e21c4a]{padding-left:.588rem;padding-left:2.17647rem;font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin:0}.declaration-diff-current[data-v-b3e21c4a]{padding-top:8px;padding-bottom:5px}.declaration-diff-previous[data-v-b3e21c4a]{padding-top:5px;padding-bottom:8px;background-color:var(--color-changes-modified-previous-background);border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px);position:relative}.declaration-source-link[data-v-5863919c]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:center;margin-top:var(--declaration-source-link-margin,var(--spacing-stacked-margin-large))}.declaration-icon[data-v-5863919c]{width:1em;margin-right:5px}.conditional-constraints[data-v-2ab6251b]{margin-top:var(--declaration-conditional-constraints-margin,20px)}.abstract[data-v-702ec04e]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.abstract[data-v-702ec04e]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-702ec04e] p:last-child{margin-bottom:0}.container[data-v-6e075935]{padding-bottom:40px}.full-width-container .container[data-v-6e075935]{max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-6e075935]{padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-6e075935]{max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-6e075935]{max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-6e075935]{width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-6e075935]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-6e075935]{width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-6e075935]{width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-6e075935]{width:215px}}.title[data-v-6e075935]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-top:40px;border-top-color:var(--color-grid);border-top-style:solid;border-top-width:var(--content-table-title-border-width,1px)}@media only screen and (max-width:1250px){.title[data-v-6e075935]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-6e075935]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.contenttable-section[data-v-4aae1079]{margin-top:0}.contenttable-section[data-v-4aae1079]{align-items:baseline;padding-top:2.353rem}.contenttable-section[data-v-4aae1079]:last-child{margin-bottom:0}[data-v-4aae1079] .contenttable-title{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-4aae1079] .contenttable-title{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.contenttable-section[data-v-4aae1079]{align-items:unset;border-top:none;display:inherit;margin:0}.section-content[data-v-4aae1079],.section-title[data-v-4aae1079]{padding:0}[data-v-4aae1079] .contenttable-title{margin:0 0 2.353rem 0;padding-bottom:.5rem}}.section-content>.content[data-v-3ccf02e9],.topic[data-v-3ccf02e9]{margin-top:15px}.no-title .section-content>.content[data-v-3ccf02e9]:first-child,.no-title .topic[data-v-3ccf02e9]:first-child{margin-top:0}.datalist dd{padding-left:2rem}.datalist dt{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.datalist dt:first-of-type{padding-top:0}.type[data-v-791bac44]:first-letter{text-transform:capitalize}.detail-type[data-v-d66cd00c]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.detail-type[data-v-d66cd00c]:first-child{padding-top:0}@media only screen and (max-width:735px){.detail-type[data-v-d66cd00c]{padding-left:0}}.detail-content[data-v-d66cd00c]{padding-left:2rem}@media only screen and (max-width:735px){.detail-content[data-v-d66cd00c]{padding-left:0}}.param-name[data-v-53cac581]{font-weight:600;padding-left:1rem;padding-top:var(--spacing-param)}.param-name[data-v-53cac581]:first-child{padding-top:0}@media only screen and (max-width:735px){.param-name[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581]{padding-left:2rem}@media only screen and (max-width:735px){.param-content[data-v-53cac581]{padding-left:0}}.param-content[data-v-53cac581] dt{font-weight:600}.param-content[data-v-53cac581] dd{margin-left:1em}.parameters-table[data-v-3f89f723] .change-added,.parameters-table[data-v-3f89f723] .change-removed{display:inline-block;max-width:100%}.parameters-table[data-v-3f89f723] .change-removed,.parameters-table[data-v-3f89f723] .token-removed{text-decoration:line-through}.param[data-v-3f89f723]{font-size:.88235rem;box-sizing:border-box}.param.changed[data-v-3f89f723]{display:flex;flex-flow:row wrap;padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.param.changed.changed[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed.changed[data-v-3f89f723]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.param.changed[data-v-3f89f723]{padding-left:0;padding-right:0}}.param.changed.changed[data-v-3f89f723]{padding-left:0;padding-right:0}.param.changed+.param.changed[data-v-3f89f723]{margin-top:calc(var(--spacing-param)/2)}.changed .param-content[data-v-3f89f723],.changed .param-symbol[data-v-3f89f723]{padding-top:2px;padding-bottom:2px}@media only screen and (max-width:735px){.changed .param-content[data-v-3f89f723]{padding-top:0}.changed .param-symbol[data-v-3f89f723]{padding-bottom:0}}.param-symbol[data-v-3f89f723]{text-align:right}.changed .param-symbol[data-v-3f89f723]{padding-left:2.17647rem}@media only screen and (max-width:735px){.param-symbol[data-v-3f89f723]{text-align:left}.changed .param-symbol[data-v-3f89f723]{padding-left:0}}.param-symbol[data-v-3f89f723] .type-identifier-link{color:var(--color-link)}.param+.param[data-v-3f89f723]{margin-top:var(--spacing-param)}.param+.param[data-v-3f89f723]:first-child{margin-top:0}.param-content[data-v-3f89f723]{padding-left:1rem;padding-left:2.17647rem}.changed .param-content[data-v-3f89f723]{padding-right:1rem}@media only screen and (max-width:735px){.param-content[data-v-3f89f723]{padding-left:0;padding-right:0}}.property-metadata[data-v-8590589e]{color:var(--color-figure-gray-secondary)}.property-text{font-weight:700}.property-metadata[data-v-0a648a1e]{color:var(--color-figure-gray-secondary)}.property-name[data-v-310f0b2c]{font-weight:700}.property-name.deprecated[data-v-310f0b2c]{text-decoration:line-through}.property-deprecated[data-v-310f0b2c]{margin-left:0}.content[data-v-310f0b2c],.content[data-v-310f0b2c] p:first-child{display:inline}.response-mimetype[data-v-20293786]{color:var(--color-figure-gray-secondary)}.part-name[data-v-021cd63d]{font-weight:700}.content[data-v-021cd63d],.content[data-v-021cd63d] p:first-child{display:inline}.param-name[data-v-03478142]{font-weight:700}.param-name.deprecated[data-v-03478142]{text-decoration:line-through}.param-deprecated[data-v-03478142]{margin-left:0}.content[data-v-03478142],.content[data-v-03478142] p:first-child{display:inline}.response-name[data-v-881189f4],.response-reason[data-v-881189f4]{font-weight:700}@media only screen and (max-width:735px){.response-reason[data-v-881189f4]{display:none}}.response-name>code>.reason[data-v-881189f4]{display:none}@media only screen and (max-width:735px){.response-name>code>.reason[data-v-881189f4]{display:initial}}.primary-content.with-border[data-v-2baae7e0]:before{border-top-color:var(--colors-grid,var(--color-grid));border-top-style:solid;border-top-width:1px;content:"";display:block}.primary-content[data-v-2baae7e0]>*{margin-bottom:40px;margin-top:40px}.primary-content[data-v-2baae7e0]>:first-child{margin-top:2.353rem}.relationships-list[data-v-4c67b8c7]{list-style:none}.relationships-list.column[data-v-4c67b8c7]{margin-left:0;margin-top:15px}.relationships-list.inline[data-v-4c67b8c7]{display:flex;flex-direction:row;flex-wrap:wrap;margin-top:15px;margin-left:0}.relationships-list.inline li[data-v-4c67b8c7]:not(:last-child):after{content:",\00a0"}.relationships-list.changed[data-v-4c67b8c7]{padding-right:1rem;padding-left:2.17647rem;padding-top:8px;padding-bottom:8px;display:inline-flex;width:100%;box-sizing:border-box}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:1rem}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}.relationships-list.changed.changed[data-v-4c67b8c7]{padding-right:17px;padding-left:2.17647rem}}@media only screen and (max-width:735px){.relationships-list.changed[data-v-4c67b8c7]{padding-left:0;padding-right:0}}.relationships-list.changed[data-v-4c67b8c7]:after{margin-top:.61765rem}.relationships-list.changed.column[data-v-4c67b8c7]{display:block;box-sizing:border-box}.relationships-item[data-v-4c67b8c7],.relationships-list[data-v-4c67b8c7]{box-sizing:inherit}.conditional-constraints[data-v-4c67b8c7]{font-size:.82353rem;margin:.17647rem 0 .58824rem 1.17647rem}.availability[data-v-602d8130]{display:flex;flex-flow:row wrap;gap:10px;margin-top:25px}.badge[data-v-602d8130]{margin:0}.technology[data-v-602d8130]{display:inline-flex;align-items:center}.tech-icon[data-v-602d8130]{height:12px;padding-right:5px;fill:var(--badge-color)}.theme-dark .tech-icon[data-v-602d8130]{fill:var(--badge-color)}.beta[data-v-602d8130]{color:var(--color-badge-beta)}.theme-dark .beta[data-v-602d8130]{color:var(--color-badge-dark-beta)}.deprecated[data-v-602d8130]{color:var(--color-badge-deprecated)}.theme-dark .deprecated[data-v-602d8130]{color:var(--color-badge-dark-deprecated)}.changed[data-v-602d8130]{padding-left:26px}.changed[data-v-602d8130]:after{content:none}.changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:16px;height:16px;left:5px}@media screen{[data-color-scheme=dark] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}}.theme-dark .changed[data-v-602d8130]:before{background-image:url(../img/modified-icon.f496e73d.svg)}.changed-added[data-v-602d8130]{border-color:var(--color-changes-added)}.changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}}.theme-dark .changed-added[data-v-602d8130]:before{background-image:url(../img/added-icon.d6f7e47d.svg)}.changed-deprecated[data-v-602d8130]{border-color:var(--color-changes-deprecated)}.changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.theme-dark .changed-deprecated[data-v-602d8130]:before{background-image:url(../img/deprecated-icon.015b4f17.svg)}.changed-modified[data-v-602d8130]{border-color:var(--color-changes-modified)}.eyebrow[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-eyebrow,#ccc);display:block;margin-bottom:1.17647rem}@media only screen and (max-width:735px){.eyebrow[data-v-4492c658]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .eyebrow[data-v-4492c658]{color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-4492c658]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-documentation-intro-title,#fff);margin-bottom:.70588rem}@media only screen and (max-width:1250px){.title[data-v-4492c658]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-4492c658]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.documentation-hero--disabled .title[data-v-4492c658]{color:var(--colors-header-text,var(--color-header-text))}small[data-v-4492c658]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding-left:10px}@media only screen and (max-width:1250px){small[data-v-4492c658]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}small[data-v-4492c658]:before{content:attr(data-tag-name)}small.Beta[data-v-4492c658]{color:var(--color-badge-beta)}.theme-dark small.Beta[data-v-4492c658]{color:var(--color-badge-dark-beta)}small.Deprecated[data-v-4492c658]{color:var(--color-badge-deprecated)}.theme-dark small.Deprecated[data-v-4492c658]{color:var(--color-badge-dark-deprecated)}.OnThisPageStickyContainer[data-v-1b6d0048]{margin-top:2.353rem;position:sticky;top:3.82353rem;align-self:flex-start;flex:0 0 auto;width:192px;padding-right:1.29412rem;box-sizing:border-box;padding-bottom:var(--spacing-stacked-margin-small);max-height:calc(100vh - 3.82353rem);overflow:auto}@media print{.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}@media only screen and (max-width:735px){.OnThisPageStickyContainer[data-v-1b6d0048]{display:none}}.doc-topic[data-v-43c74ad0]{display:flex;flex-direction:column;height:100%}.doc-topic.with-on-this-page[data-v-43c74ad0]{--doc-hero-right-offset:192px}#main[data-v-43c74ad0]{outline-style:none;height:100%}[data-v-43c74ad0] .minimized-title{margin-bottom:.833rem}[data-v-43c74ad0] .minimized-title .title{font-size:1.416rem;font-weight:700}[data-v-43c74ad0] .minimized-title small{font-size:1rem;padding-left:.416rem}.minimized-abstract[data-v-43c74ad0]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.container[data-v-43c74ad0]:not(.minimized-container){outline-style:none}.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:820px;margin-left:auto;margin-right:auto;padding-left:80px;padding-right:80px;box-sizing:border-box}@media print{.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){padding-left:20px;padding-right:20px;max-width:none}}@media only screen and (min-width:1251px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:980px}}@media only screen and (min-width:1500px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){max-width:1080px}}@media only screen and (max-width:735px){.full-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:auto;padding-left:20px;padding-right:20px}}.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:692px}}@media only screen and (max-width:735px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:87.5%}}@media only screen and (max-width:320px){.static-width-container .container[data-v-43c74ad0]:not(.minimized-container){width:215px}}[data-v-43c74ad0] .minimized-container{outline-style:none;--spacing-stacked-margin-large:0.667em;--spacing-stacked-margin-xlarge:1em;--declaration-code-listing-margin:1em 0 0 0;--declaration-conditional-constraints-margin:1em;--declaration-source-link-margin:0.833em;--code-block-style-elements-padding:7px 12px;--spacing-param:var(--spacing-stacked-margin-large);--aside-border-radius:6px;--code-border-radius:6px}[data-v-43c74ad0] .minimized-container .description{margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container>.primary-content>*{margin-top:1.5em;margin-bottom:1.5em}[data-v-43c74ad0] .minimized-container .description{margin-top:0}[data-v-43c74ad0] .minimized-container h1,[data-v-43c74ad0] .minimized-container h2,[data-v-43c74ad0] .minimized-container h3,[data-v-43c74ad0] .minimized-container h4,[data-v-43c74ad0] .minimized-container h5,[data-v-43c74ad0] .minimized-container h6{font-size:1rem;font-weight:700}[data-v-43c74ad0] .minimized-container h2{font-size:1.083rem}[data-v-43c74ad0] .minimized-container h1{font-size:1.416rem}[data-v-43c74ad0] .minimized-container aside{padding:.667rem 1rem}[data-v-43c74ad0] .minimized-container .single-line,[data-v-43c74ad0] .minimized-container .source{border-radius:var(--code-border-radius)}.description[data-v-43c74ad0]{margin-bottom:2.353rem}.description[data-v-43c74ad0]:empty{display:none}.description.after-enhanced-hero[data-v-43c74ad0]{margin-top:2.353rem}.description[data-v-43c74ad0] .content+*{margin-top:var(--spacing-stacked-margin-large)}.full-width-container .doc-content .minimized-container[data-v-43c74ad0]{padding-left:1.4rem;padding-right:1.4rem}[data-v-43c74ad0] .no-primary-content{--content-table-title-border-width:0px}.sample-download[data-v-43c74ad0]{margin-top:20px}.declarations-container[data-v-43c74ad0]{margin-top:30px}.declarations-container.minimized-container[data-v-43c74ad0]{margin-top:0}[data-v-43c74ad0] h1{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h1{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h1{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h2{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h2{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h2{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h3{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h4{font-size:1.41176rem;line-height:1.16667;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h4{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h5{font-size:1.29412rem;line-height:1.18182;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-43c74ad0] h5{font-size:1.17647rem;line-height:1.2;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-43c74ad0] h5{font-size:1.05882rem;line-height:1.44444;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-43c74ad0] h6{font-size:1rem;line-height:1.47059;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.doc-content-wrapper[data-v-43c74ad0]{display:flex;justify-content:center}.doc-content-wrapper .doc-content[data-v-43c74ad0]{min-width:0;width:100%}.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:820px}@media only screen and (min-width:1251px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:980px}}@media only screen and (min-width:1500px){.with-on-this-page .doc-content-wrapper .doc-content[data-v-43c74ad0]{max-width:1080px}}.quick-navigation-open[data-v-53faf852]{display:flex;align-items:center;justify-content:center;width:16px;border:1px solid var(--color-grid);height:100%;border-radius:var(--border-radius,4px);transition:background-color .15s;box-sizing:border-box}.quick-navigation-open[data-v-53faf852]:hover{background-color:var(--color-fill-tertiary)}@media only screen and (max-width:1023px){.quick-navigation-open[data-v-53faf852]{display:none}}.fromkeyboard .quick-navigation-open[data-v-53faf852]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tag[data-v-7e76f326]{display:inline-block;padding-right:.58824rem}.tag[data-v-7e76f326]:focus{outline:none}.tag button[data-v-7e76f326]{color:var(--color-figure-gray);background-color:var(--color-fill-tertiary);font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border-radius:.82353rem;padding:.23529rem .58824rem;white-space:nowrap;border:1px solid transparent}@media (hover:hover){.tag button[data-v-7e76f326]:hover{transition:background-color .2s,color .2s;background-color:var(--color-fill-blue);color:#fff}}.tag button[data-v-7e76f326]:focus:active{background-color:var(--color-fill-blue);color:#fff}.fromkeyboard .tag button[data-v-7e76f326]:focus,.tag button.focus[data-v-7e76f326],.tag button[data-v-7e76f326]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.tags[data-v-1f2bd813]{position:relative;margin:0;list-style:none;box-sizing:border-box;transition:padding-right .8s,padding-bottom .8s,max-height 1s,opacity 1s;padding:0}.tags .scroll-wrapper[data-v-1f2bd813]{overflow-x:auto;overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin}.tags .scroll-wrapper[data-v-1f2bd813]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.tags .scroll-wrapper.scrolling[data-v-1f2bd813]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar{height:11px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:end{margin-right:8px}.tags .scroll-wrapper.scrolling[data-v-1f2bd813]::-webkit-scrollbar-track-piece:start{margin-left:8px}.tags ul[data-v-1f2bd813]{margin:0;padding:0;display:flex}.filter[data-v-3f01a546]{--input-vertical-padding:.76471rem;--input-horizontal-spacing:.58824rem;--input-height:1.64706rem;--input-border-color:var(--color-fill-gray-secondary);--input-text:var(--color-fill-gray-secondary);position:relative;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0);border-radius:calc(var(--border-radius, 4px) + 1px)}.fromkeyboard .filter[data-v-3f01a546]:focus{outline:none}.filter__top-wrapper[data-v-3f01a546]{display:flex}.filter__filter-button[data-v-3f01a546]{position:relative;z-index:1;cursor:text;margin-left:var(--input-horizontal-spacing);margin-right:.17647rem}@media only screen and (max-width:735px){.filter__filter-button[data-v-3f01a546]{margin-right:.41176rem}}.filter__filter-button .svg-icon[data-v-3f01a546]{fill:var(--input-text);display:block;height:21px}.filter__filter-button.blue[data-v-3f01a546]>*{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.filter.focus .filter__wrapper[data-v-3f01a546]{box-shadow:0 0 0 3pt var(--color-focus-color);--input-border-color:var(--color-fill-blue)}.filter__wrapper[data-v-3f01a546]{border:1px solid var(--input-border-color);background:var(--color-fill);border-radius:var(--border-radius,4px)}.filter__wrapper--reversed[data-v-3f01a546]{display:flex;flex-direction:column-reverse}.filter__wrapper--no-border-style[data-v-3f01a546]{border:none}.filter__suggested-tags[data-v-3f01a546]{border-top:1px solid var(--color-fill-gray-tertiary);z-index:1;overflow:hidden}.filter__suggested-tags[data-v-3f01a546] ul{padding:var(--input-vertical-padding) .52941rem;border:1px solid transparent;border-bottom-left-radius:calc(var(--border-radius, 4px) - 1px);border-bottom-right-radius:calc(var(--border-radius, 4px) - 1px)}.fromkeyboard .filter__suggested-tags[data-v-3f01a546] ul:focus{outline:none;box-shadow:0 0 0 5px var(--color-focus-color)}.filter__wrapper--reversed .filter__suggested-tags[data-v-3f01a546]{border-bottom:1px solid var(--color-fill-gray-tertiary);border-top:none}.filter__selected-tags[data-v-3f01a546]{z-index:1;padding-left:4px;margin:-4px 0}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546]{padding-left:0}}.filter__selected-tags[data-v-3f01a546] ul{padding:4px}@media only screen and (max-width:735px){.filter__selected-tags[data-v-3f01a546] ul{padding-right:.41176rem}}.filter__selected-tags[data-v-3f01a546] ul .tag:last-child{padding-right:0}.filter__delete-button[data-v-3f01a546]{position:relative;margin:0;z-index:1;border-radius:100%}.fromkeyboard .filter__delete-button[data-v-3f01a546]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.filter__delete-button .clear-rounded-icon[data-v-3f01a546]{height:.70588rem;width:.70588rem;fill:var(--input-text);display:block}.filter__delete-button-wrapper[data-v-3f01a546]{display:flex;align-items:center;padding-right:var(--input-horizontal-spacing);padding-left:.17647rem;border-top-right-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.filter__input-label[data-v-3f01a546]{position:relative;flex-grow:1;height:var(--input-height);padding:var(--input-vertical-padding) 0}.filter__input-label[data-v-3f01a546]:after{content:attr(data-value);visibility:hidden;width:auto;white-space:nowrap;min-width:130px;display:block;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input-label[data-v-3f01a546]:after{text-indent:.17647rem}}.filter__input-box-wrapper[data-v-3f01a546]{overflow-y:hidden;-ms-overflow-style:none;scrollbar-color:var(--color-figure-gray-tertiary) transparent;scrollbar-width:thin;display:flex;overflow-x:auto;align-items:center;cursor:text;flex:1}.filter__input-box-wrapper[data-v-3f01a546]::-webkit-scrollbar{height:0}@supports not ((-webkit-touch-callout:none) or (scrollbar-width:none) or (-ms-overflow-style:none)){.filter__input-box-wrapper.scrolling[data-v-3f01a546]{--scrollbar-height:11px;padding-top:var(--scrollbar-height);height:calc(var(--scroll-target-height) - var(--scrollbar-height));display:flex;align-items:center}}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar{height:11px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-thumb{border-radius:10px;background-color:var(--color-figure-gray-tertiary);border:2px solid transparent;background-clip:padding-box}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:end{margin-right:8px}.filter__input-box-wrapper.scrolling[data-v-3f01a546]::-webkit-scrollbar-track-piece:start{margin-left:8px}.filter__input[data-v-3f01a546]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-text);height:var(--input-height);border:none;width:100%;position:absolute;background:transparent;z-index:1;text-indent:.41176rem}@media only screen and (max-width:735px){.filter__input[data-v-3f01a546]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);text-indent:.17647rem}}.filter__input[data-v-3f01a546]:focus{outline:none}.filter__input[placeholder][data-v-3f01a546]::-moz-placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]::placeholder{color:var(--input-text);opacity:1}.filter__input[placeholder][data-v-3f01a546]:-ms-input-placeholder{color:var(--input-text)}.filter__input[placeholder][data-v-3f01a546]::-ms-input-placeholder{color:var(--input-text)}.highlight[data-v-1c4190f0]{display:inline}.highlight[data-v-1c4190f0] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}@media only screen and (max-width:735px){.preview[data-v-6fb5ba95]{display:none}}.unavailable[data-v-6fb5ba95]{align-items:center;display:flex;height:100%;justify-content:center}.loading[data-v-6fb5ba95]{padding:20px}.loading-row[data-v-6fb5ba95]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-delay:calc(1s + 0.3s*var(--index));animation-delay:calc(1s + 0.3s*var(--index));-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;background-color:var(--color-fill-gray-tertiary);border-radius:4px;height:12px;margin:20px 0;opacity:0}.loading-row[data-v-6fb5ba95]:first-of-type{margin-top:0}.loading-row[data-v-6fb5ba95]:last-of-type{margin-bottom:0}.quick-navigation[data-v-71686791]{--input-border-color:var(--color-grid)}.quick-navigation input[type=text][data-v-71686791]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.quick-navigation input[type=text][data-v-71686791]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.quick-navigation__filter[data-v-71686791]{--input-horizontal-spacing:.88235rem}.quick-navigation[data-v-71686791] .filter__wrapper{background-color:var(--color-fill-secondary)}.quick-navigation__container[data-v-71686791]{background-color:var(--color-fill-secondary);border:solid 1px var(--input-border-color);border-radius:var(--border-radius,4px);margin:0 .94118rem}.quick-navigation__container>[data-v-71686791]{--input-text:var(--color-figure-gray-secondary)}.quick-navigation__container.focus[data-v-71686791]{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.quick-navigation__magnifier-icon-container[data-v-71686791]{width:1rem}.quick-navigation__magnifier-icon-container>[data-v-71686791]{width:100%}.quick-navigation__magnifier-icon-container.blue .magnifier-icon[data-v-71686791]{fill:var(--color-figure-blue);color:var(--color-figure-blue)}.quick-navigation__match-list[data-v-71686791]{display:flex;max-height:26.47059rem;height:0}.quick-navigation__match-list>[data-v-71686791]{min-width:0}.quick-navigation__match-list.active[data-v-71686791]{height:auto;border-top:1px solid var(--input-border-color)}.quick-navigation__match-list .no-results[data-v-71686791]{margin:.88235rem auto;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.quick-navigation__match-list .selected[data-v-71686791]{background-color:var(--color-navigator-item-hover)}.quick-navigation__refs[data-v-71686791]{flex:1;overflow:auto}.quick-navigation__preview[data-v-71686791]{border-left:1px solid var(--color-grid);flex:0 0 61.8%;overflow:auto;position:sticky;top:0}.quick-navigation__reference[data-v-71686791]:hover{text-decoration:none}.quick-navigation__symbol-match[data-v-71686791]{display:flex;height:2.35294rem;padding:.58824rem .88235rem;color:var(--color-figure-gray)}.quick-navigation__symbol-match[data-v-71686791]:hover{background-color:var(--color-navigator-item-hover)}.quick-navigation__symbol-match .symbol-info[data-v-71686791]{margin:auto;width:100%}.quick-navigation__symbol-match .symbol-info .navigator-icon[data-v-71686791]{margin-right:.58824rem}.quick-navigation__symbol-match .symbol-info .symbol-name[data-v-71686791]{display:flex}.quick-navigation__symbol-match .symbol-info .symbol-name .symbol-title[data-v-71686791]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path[data-v-71686791]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);display:flex;margin-left:1.58824rem;overflow:hidden;white-space:nowrap}.quick-navigation__symbol-match .symbol-info .symbol-path .parent-path[data-v-71686791]{padding-right:.29412rem}@media print{.sidebar[data-v-f3c6416c]{display:none}}.adjustable-sidebar-width[data-v-f3c6416c]{display:flex}@media only screen and (max-width:1023px){.adjustable-sidebar-width[data-v-f3c6416c]{display:block;position:relative}}.adjustable-sidebar-width.dragging[data-v-f3c6416c] *{cursor:col-resize!important}.adjustable-sidebar-width.sidebar-hidden.dragging[data-v-f3c6416c] *{cursor:e-resize!important}.sidebar[data-v-f3c6416c]{position:relative}@media only screen and (max-width:1023px){.sidebar[data-v-f3c6416c]{position:static}}.aside[data-v-f3c6416c]{width:250px;position:relative;height:100%;max-width:100vw}.aside.no-transition[data-v-f3c6416c]{transition:none!important}@media only screen and (min-width:1024px){.aside[data-v-f3c6416c]{transition:width .3s ease-in,visibility 0s linear var(--visibility-transition-time,0s)}.aside.dragging[data-v-f3c6416c]:not(.is-opening-on-large):not(.hide-on-large){transition:none}.aside.hide-on-large[data-v-f3c6416c]{width:0!important;visibility:hidden;pointer-events:none;--visibility-transition-time:.3s}}@media only screen and (max-width:1023px){.aside[data-v-f3c6416c]{width:100%!important;overflow:hidden;min-width:0;max-width:100%;height:calc(var(--app-height) - var(--top-offset-mobile));position:fixed;top:var(--top-offset-mobile);bottom:0;z-index:9998;transform:translateX(-100%);transition:transform .15s ease-in;left:0}.aside[data-v-f3c6416c] .aside-animated-child{opacity:0}.aside.show-on-mobile[data-v-f3c6416c]{transform:translateX(0)}.aside.show-on-mobile[data-v-f3c6416c] .aside-animated-child{--index:0;opacity:1;transition:opacity .15s linear;transition-delay:calc(var(--index)*0.15s + .15s)}.aside.has-mobile-top-offset[data-v-f3c6416c]{border-top:1px solid var(--color-fill-gray-tertiary)}}.content[data-v-f3c6416c]{display:flex;flex-flow:column;min-width:0;flex:1 1 auto;height:100%}.resize-handle[data-v-f3c6416c]{position:absolute;cursor:col-resize;top:0;bottom:0;right:0;width:5px;height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:1;transition:background-color .15s;transform:translateX(50%)}@media only screen and (max-width:1023px){.resize-handle[data-v-f3c6416c]{display:none}}.resize-handle[data-v-f3c6416c]:hover{background:var(--color-fill-gray-tertiary)}.navigator-card-item[data-v-0b9fe514]{--nav-head-wrapper-left-space:10px;--nav-head-wrapper-right-space:20px;--head-wrapper-vertical-space:5px;--nav-depth-spacer:25px;--nesting-index:0;display:flex;align-items:stretch;min-height:32px;box-sizing:border-box}.fromkeyboard .navigator-card-item[data-v-0b9fe514]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:-4px}.navigator-card-item.active[data-v-0b9fe514]{background:var(--color-fill-gray-quaternary)}.hover .navigator-card-item[data-v-0b9fe514]:not(.is-group){background:var(--color-navigator-item-hover)}.depth-spacer[data-v-0b9fe514]{width:calc(var(--nesting-index)*15px + var(--nav-depth-spacer));height:100%;position:relative;flex:0 0 auto}.title-container[data-v-0b9fe514]{width:100%;min-width:0;display:flex;align-items:center}.navigator-icon-wrapper[data-v-0b9fe514]{margin-right:7px}.head-wrapper[data-v-0b9fe514]{padding:var(--head-wrapper-vertical-space) var(--nav-head-wrapper-right-space) var(--head-wrapper-vertical-space) var(--nav-head-wrapper-left-space);position:relative;display:flex;align-items:center;flex:1;min-width:0}@supports (padding:max(0px)){.head-wrapper[data-v-0b9fe514]{padding-left:max(var(--nav-head-wrapper-left-space),env(safe-area-inset-left));padding-right:max(var(--nav-head-wrapper-right-space),env(safe-area-inset-right))}}.highlight[data-v-d75876e2]{display:inline}.highlight[data-v-d75876e2] .match{font-weight:600;background:var(--color-fill-light-blue-secondary)}.is-group .leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray-secondary);font-weight:600}.is-group .leaf-link[data-v-0c96ff75]:after{display:none}.navigator-icon[data-v-0c96ff75]{display:flex;flex:0 0 auto}.navigator-icon.changed[data-v-0c96ff75]{border:none;width:1em;height:1em;z-index:0}.navigator-icon.changed[data-v-0c96ff75]:after{top:50%;left:50%;right:auto;bottom:auto;transform:translate(-50%,-50%);background-image:url(../img/modified-icon.f496e73d.svg);margin:0}@media screen{[data-color-scheme=dark] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed[data-v-0c96ff75]:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-added[data-v-0c96ff75]:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .navigator-icon.changed-deprecated[data-v-0c96ff75]:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.leaf-link[data-v-0c96ff75]{color:var(--color-figure-gray);text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:100%;display:inline;vertical-align:middle;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.fromkeyboard .leaf-link[data-v-0c96ff75]:focus{outline:none}.leaf-link[data-v-0c96ff75]:hover{text-decoration:none}.leaf-link.bolded[data-v-0c96ff75]{font-weight:600}.leaf-link[data-v-0c96ff75]:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0}.extended-content[data-v-0c96ff75]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.tree-toggle[data-v-0c96ff75]{overflow:hidden;position:absolute;width:100%;height:100%;padding-right:5px;box-sizing:border-box;z-index:1;display:flex;align-items:center;justify-content:flex-end}.chevron[data-v-0c96ff75]{width:10px}.chevron.animating[data-v-0c96ff75]{transition:transform .15s ease-in}.chevron.rotate[data-v-0c96ff75]{transform:rotate(90deg)}.navigator-card[data-v-24789ed0]{--card-vertical-spacing:8px;--card-horizontal-spacing:20px;--nav-filter-horizontal-padding:20px;--visibility-delay:1s;display:flex;flex-direction:column;min-height:0;height:calc(var(--app-height) - var(--nav-height, 0px));position:sticky;top:var(--nav-height,0)}@media only screen and (max-width:1023px){.navigator-card[data-v-24789ed0]{height:100%;position:static;background:var(--color-fill)}}.navigator-card .navigator-card-full-height[data-v-24789ed0]{min-height:0;flex:1 1 auto}.navigator-card .head-inner[data-v-24789ed0]{overflow:hidden}.navigator-card .head-wrapper[data-v-24789ed0]{position:relative;flex:1 0 auto}.navigator-card .navigator-head[data-v-24789ed0]{--navigator-head-padding-right:calc(var(--card-horizontal-spacing)*2 + 19px);padding:0 var(--navigator-head-padding-right) 0 var(--card-horizontal-spacing);background:var(--color-fill);border-bottom:1px solid var(--color-grid);display:flex;align-items:center;height:3.05882rem;white-space:nowrap}.navigator-card .navigator-head .card-link[data-v-24789ed0]{color:var(--color-text);font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);font-weight:600;overflow:hidden;text-overflow:ellipsis}.navigator-card .navigator-head .badge[data-v-24789ed0]{margin-top:0}.navigator-card .navigator-head.router-link-exact-active[data-v-24789ed0]{background:var(--color-fill)}.navigator-card .navigator-head.router-link-exact-active .card-link[data-v-24789ed0]{font-weight:700}.navigator-card .navigator-head[data-v-24789ed0]:hover{background:var(--color-navigator-item-hover);text-decoration:none}@supports (padding:max(0px)){.navigator-card .navigator-head[data-v-24789ed0]{padding-left:max(var(--card-horizontal-spacing),env(safe-area-inset-left));padding-right:max(var(--navigator-head-padding-right),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-card .navigator-head[data-v-24789ed0]{justify-content:center;--navigator-head-padding-right:var(--card-horizontal-spacing)}}@media only screen and (max-width:767px){.navigator-card .navigator-head[data-v-24789ed0]{height:2.82353rem;padding:0 20px}}.close-card[data-v-24789ed0]{display:flex;position:absolute;z-index:1;align-items:center;justify-content:center;right:1rem;padding:5px;margin-left:-5px;top:calc(50% - 14px);transition:transform .3s ease-in 0s,visibility 0s}@media only screen and (max-width:1023px){.close-card[data-v-24789ed0]{right:unset;top:0;left:0;margin:0;padding:0 1.29412rem 0 20px;height:100%}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(1.29412rem,env(safe-area-inset-left))}}}@media only screen and (max-width:767px){.close-card[data-v-24789ed0]{padding-left:.94118rem;padding-right:.94118rem}@supports (padding:max(0px)){.close-card[data-v-24789ed0]{padding-left:max(.94118rem,env(safe-area-inset-left))}}}.close-card .close-icon[data-v-24789ed0]{width:19px;height:19px}@media only screen and (min-width:1024px){.close-card.hide-on-large[data-v-24789ed0]{display:none}.close-card[data-v-24789ed0]:hover{border-radius:var(--border-radius,4px);background:var(--color-fill-gray-quaternary)}.sidebar-hidden .close-card[data-v-24789ed0]{transition:transform .3s ease-in 0s,visibility 0s linear .3s;visibility:hidden;transform:translateX(3.76471rem)}}[data-v-24789ed0] .card-body{padding-right:0;flex:1 1 auto;min-height:0;height:100%}@media only screen and (max-width:1023px){[data-v-24789ed0] .card-body{--card-vertical-spacing:0px}}.navigator-card-inner[data-v-24789ed0]{display:flex;flex-flow:column;height:100%}.vue-recycle-scroller{position:relative}.vue-recycle-scroller.direction-vertical:not(.page-mode){overflow-y:auto}.vue-recycle-scroller.direction-horizontal:not(.page-mode){overflow-x:auto}.vue-recycle-scroller.direction-horizontal{display:-webkit-box;display:-ms-flexbox;display:flex}.vue-recycle-scroller__slot{-webkit-box-flex:1;-ms-flex:auto 0 0px;flex:auto 0 0}.vue-recycle-scroller__item-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.vue-recycle-scroller.ready .vue-recycle-scroller__item-view{position:absolute;top:0;left:0;will-change:transform}.vue-recycle-scroller.direction-vertical .vue-recycle-scroller__item-wrapper{width:100%}.vue-recycle-scroller.direction-horizontal .vue-recycle-scroller__item-wrapper{height:100%}.vue-recycle-scroller.ready.direction-vertical .vue-recycle-scroller__item-view{width:100%}.vue-recycle-scroller.ready.direction-horizontal .vue-recycle-scroller__item-view{height:100%}.resize-observer[data-v-b329ee4c]{border:none;background-color:transparent;opacity:0}.resize-observer[data-v-b329ee4c],.resize-observer[data-v-b329ee4c] object{position:absolute;top:0;left:0;z-index:-1;width:100%;height:100%;pointer-events:none;display:block;overflow:hidden}.navigator-card.filter-on-top .filter-wrapper[data-v-1543892a]{order:1;position:static}.navigator-card.filter-on-top .card-body[data-v-1543892a]{order:2}.no-items-wrapper[data-v-1543892a]{overflow:hidden;color:var(--color-figure-gray-tertiary)}.no-items-wrapper .no-items[data-v-1543892a]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:var(--card-vertical-spacing) var(--card-horizontal-spacing);min-width:200px;box-sizing:border-box}.navigator-filter[data-v-1543892a]{box-sizing:border-box;padding:15px var(--nav-filter-horizontal-padding);border-top:1px solid var(--color-grid);height:71px;display:flex;align-items:flex-end}.filter-on-top .navigator-filter[data-v-1543892a]{border-top:none;align-items:flex-start}@supports (padding:max(0px)){.navigator-filter[data-v-1543892a]{padding-left:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-left));padding-right:max(var(--nav-filter-horizontal-padding),env(safe-area-inset-right))}}@media only screen and (max-width:1023px){.navigator-filter[data-v-1543892a]{--nav-filter-horizontal-padding:20px;border:none;padding-top:10px;padding-bottom:10px;height:60px}}.navigator-filter .input-wrapper[data-v-1543892a]{position:relative;flex:1;min-width:0}.navigator-filter .filter-component[data-v-1543892a]{--input-vertical-padding:8px;--input-height:22px;--input-border-color:var(--color-grid);--input-text:var(--color-figure-gray-secondary)}.navigator-filter .filter-component[data-v-1543892a] .filter__input{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.scroller[data-v-1543892a]{height:100%;box-sizing:border-box;padding:var(--card-vertical-spacing) 0;padding-bottom:calc(var(--top-offset, 0px) + var(--card-vertical-spacing));transition:padding-bottom .15s ease-in}@media only screen and (max-width:1023px){.scroller[data-v-1543892a]{padding-bottom:10em}}.scroller[data-v-1543892a] .vue-recycle-scroller__item-wrapper{transform:translateZ(0)}.filter-wrapper[data-v-1543892a]{position:sticky;bottom:0;background:var(--color-fill)}.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex:1 0 71px;overflow:hidden}@media only screen and (max-width:1023px){.sidebar-transitioning .filter-wrapper[data-v-1543892a]{flex-basis:60px}}.loader[data-v-0de29914]{height:.70588rem;background-color:var(--color-fill-gray-tertiary);border-radius:4px}.navigator-icon[data-v-0de29914]{width:16px;height:16px;border-radius:2px;background-color:var(--color-fill-gray-tertiary)}.loading-navigator-item[data-v-0de29914]{-webkit-animation:pulse 2.5s ease;animation:pulse 2.5s ease;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:0;-webkit-animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index));animation-delay:calc(var(--visibility-delay) + 0.3s*var(--index))}.delay-visibility-enter-active[data-v-4b6d345f]{transition:visibility var(--visibility-delay);visibility:hidden}.loading-navigator[data-v-4b6d345f]{padding-top:var(--card-vertical-spacing)}.navigator[data-v-159b9764]{height:100%;display:flex;flex-flow:column}@media only screen and (max-width:1023px){.navigator[data-v-159b9764]{position:static;transition:none}}.hierarchy-collapsed-items[data-v-74906830]{position:relative;display:inline-flex;align-items:center;margin-left:.17647rem}.hierarchy-collapsed-items .hierarchy-item-icon[data-v-74906830]{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-collapsed-items[data-v-74906830]{display:none}.hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;border-width:0;font-weight:600;height:1.11765rem;text-align:center;width:2.11765rem;display:flex;align-items:center;justify-content:center}.theme-dark .hierarchy-collapsed-items .toggle[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background)}.hierarchy-collapsed-items .toggle.focused[data-v-74906830],.hierarchy-collapsed-items .toggle[data-v-74906830]:active,.hierarchy-collapsed-items .toggle[data-v-74906830]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.indicator[data-v-74906830]{width:1em;height:1em;display:flex;align-items:center}.indicator .toggle-icon[data-v-74906830]{width:100%}.dropdown[data-v-74906830]{background:var(--color-nav-hierarchy-collapse-background);border-color:var(--color-nav-hierarchy-collapse-borders);border-radius:var(--border-radius,4px);border-style:solid;box-shadow:0 1px 4px -1px var(--color-figure-gray-secondary);border-width:0;padding:0 .5rem;position:absolute;z-index:42;top:calc(100% + .41176rem)}.theme-dark .dropdown[data-v-74906830]{background:var(--color-nav-dark-hierarchy-collapse-background);border-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown.collapsed[data-v-74906830]{opacity:0;transform:translate3d(0,-.41176rem,0);transition:opacity .25s ease,transform .25s ease,visibility 0s linear .25s;visibility:hidden}.dropdown[data-v-74906830]:not(.collapsed){opacity:1;transform:none;transition:opacity .25s ease,transform .25s ease,visibility 0s linear 0s;visibility:visible}.nav--in-breakpoint-range .dropdown[data-v-74906830]:not(.collapsed){display:none}.dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-hierarchy-collapse-background);border-bottom-style:solid;border-bottom-width:.5rem;border-left-color:transparent;border-left-style:solid;border-left-width:.5rem;border-right-color:transparent;border-right-style:solid;border-right-width:.5rem;content:"";left:1.26471rem;position:absolute;top:-.44118rem}.theme-dark .dropdown[data-v-74906830]:before{border-bottom-color:var(--color-nav-dark-hierarchy-collapse-background)}.dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-hierarchy-collapse-borders);border-top-style:solid;border-top-width:1px}.theme-dark .dropdown-item[data-v-74906830]{border-top-color:var(--color-nav-dark-hierarchy-collapse-borders)}.dropdown-item[data-v-74906830]:first-child{border-top:none}.nav-menu-link[data-v-74906830]{max-width:57.64706rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;display:block;padding:.75rem 1rem}.hierarchy-item[data-v-382bf39e]{display:flex;align-items:center;margin-left:.17647rem}.hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{width:9px;height:15px;margin-right:.17647rem;display:flex;justify-content:center;font-size:1em;align-self:baseline}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e] .hierarchy-item-icon{display:none}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top:1px solid var(--color-nav-hierarchy-item-borders);display:flex;align-items:center}.theme-dark.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]{border-top-color:var(--color-nav-dark-hierarchy-item-borders)}.nav--in-breakpoint-range .hierarchy-item[data-v-382bf39e]:first-of-type{border-top:none}.hierarchy-item.collapsed[data-v-382bf39e]{display:none}.nav--in-breakpoint-range .hierarchy-item.collapsed[data-v-382bf39e]{display:inline-block}.item[data-v-382bf39e]{display:inline-block;vertical-align:middle}.nav--in-breakpoint-range .item[data-v-382bf39e]{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;height:100%;line-height:2.47059rem}@media only screen and (min-width:768px){.hierarchy-item:first-child:last-child .item[data-v-382bf39e],.hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e]{max-width:45rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:last-child .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:last-child~.hierarchy-item .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:36rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(2) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(2)~.hierarchy-item .item[data-v-382bf39e]{max-width:28.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:27rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(3) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(3)~.hierarchy-item .item[data-v-382bf39e]{max-width:21.6rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:18rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(4) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(4)~.hierarchy-item .item[data-v-382bf39e]{max-width:14.4rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:9rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.has-badge .hierarchy-item:first-child:nth-last-child(5) .item[data-v-382bf39e],.has-badge .hierarchy-item:first-child:nth-last-child(5)~.hierarchy-item .item[data-v-382bf39e]{max-width:7.2rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:10.8rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.hierarchy-collapsed-items~.hierarchy-item:last-child .item[data-v-382bf39e]{max-width:none}.has-badge .hierarchy-collapsed-items~.hierarchy-item .item[data-v-382bf39e]{max-width:8.64rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}}.hierarchy[data-v-c2bd6086]{justify-content:flex-start;min-width:0;margin-right:80px}.nav--in-breakpoint-range .hierarchy[data-v-c2bd6086]{margin-right:0}.hierarchy .root-hierarchy .item[data-v-c2bd6086]{max-width:10rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.nav-menu-setting-label[data-v-d12167e0]{margin-right:.35294rem;white-space:nowrap}.language-container[data-v-d12167e0]{flex:1 0 auto}.language-dropdown[data-v-d12167e0]{-webkit-text-size-adjust:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;background-color:transparent;box-sizing:inherit;padding:0 11px 0 4px;margin-left:-4px;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:pointer;position:relative;z-index:1}@media only screen and (max-width:1023px){.language-dropdown[data-v-d12167e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.language-dropdown[data-v-d12167e0]:focus{outline:none}.fromkeyboard .language-dropdown[data-v-d12167e0]:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}.language-sizer[data-v-d12167e0]{position:absolute;opacity:0;pointer-events:none;padding:0}.language-toggle-container[data-v-d12167e0]{display:flex;align-items:center;padding-right:.17647rem;position:relative}.nav--in-breakpoint-range .language-toggle-container[data-v-d12167e0]{display:none}.language-toggle-container .toggle-icon[data-v-d12167e0]{width:.6em;height:.6em;position:absolute;right:7px}.language-toggle-label[data-v-d12167e0]{margin-right:2px}.language-toggle.nav-menu-toggle-label[data-v-d12167e0]{margin-right:6px}.language-list[data-v-d12167e0]{display:inline-block;margin-top:0}.language-list-container[data-v-d12167e0]{display:none}.language-list-item[data-v-d12167e0],.nav--in-breakpoint-range .language-list-container[data-v-d12167e0]{display:inline-block}.language-list-item[data-v-d12167e0]:not(:first-child){border-left:1px solid #424242;margin-left:6px;padding-left:6px}[data-v-138d523a] .nav-menu{line-height:1.5}[data-v-138d523a] .nav-menu,[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-138d523a] .nav-menu-settings{min-width:0;line-height:1.28571}@media only screen and (max-width:1023px){[data-v-138d523a] .nav-menu-settings{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (min-width:1024px){[data-v-138d523a] .nav-menu-settings{margin-left:.58824rem}}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings:not([data-previous-menu-children-count="0"]) .nav-menu-setting:first-child{border-top:1px solid #b0b0b0;display:flex;align-items:center}[data-v-138d523a] .nav-menu-settings .nav-menu-setting{display:flex;align-items:center;color:var(--color-nav-current-link);margin-left:0;min-width:0}[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:.58824rem}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:first-child:not(:only-child){margin-right:0}.theme-dark[data-v-138d523a] .nav-menu-settings .nav-menu-setting{color:var(--color-nav-dark-current-link)}.nav--in-breakpoint-range[data-v-138d523a] .nav-menu-settings .nav-menu-setting:not(:first-child){border-top:1px solid #424242}.documentation-nav[data-v-138d523a] .nav-title{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.documentation-nav[data-v-138d523a] .nav-title .nav-title-link.inactive{height:auto;color:var(--color-figure-gray-secondary-alt)}.theme-dark.documentation-nav .nav-title .nav-title-link.inactive[data-v-138d523a]{color:#b0b0b0}.sidenav-toggle-wrapper[data-v-138d523a]{display:flex;margin-top:1px}.nav--in-breakpoint-range .sidenav-toggle-wrapper[data-v-138d523a]{display:flex!important}@media only screen and (min-width:1024px){.sidenav-toggle-enter-active[data-v-138d523a],.sidenav-toggle-leave-active[data-v-138d523a]{transition:margin .3s ease-in 0s}.sidenav-toggle-enter[data-v-138d523a],.sidenav-toggle-leave-to[data-v-138d523a]{margin-left:-3.76471rem}}.sidenav-toggle[data-v-138d523a]{align-self:center;color:var(--color-nav-link-color);position:relative;margin:-5px}.theme-dark .sidenav-toggle[data-v-138d523a]{color:var(--color-nav-dark-link-color)}.sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:var(--color-fill-gray-quaternary)}.theme-dark .sidenav-toggle:hover .sidenav-icon-wrapper[data-v-138d523a]{background:#424242}.sidenav-toggle__separator[data-v-138d523a]{height:.8em;width:1px;background:var(--color-nav-color);align-self:center;margin:0 1.29412rem}.nav--in-breakpoint-range .sidenav-toggle[data-v-138d523a]{margin-left:-14px;margin-right:-14px;padding-left:14px;padding-right:14px;align-self:stretch}.nav--in-breakpoint-range .sidenav-toggle__separator[data-v-138d523a]{display:none}.sidenav-icon-wrapper[data-v-138d523a]{padding:5px;display:flex;align-items:center;justify-content:center;border-radius:var(--border-radius,4px)}.sidenav-icon[data-v-138d523a]{display:flex;width:19px;height:19px}[data-v-4a89caca] .generic-modal{overflow-y:overlay}[data-v-4a89caca] .modal-fullscreen>.container{background-color:transparent;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;flex:auto;margin:9.41176rem 0;max-width:47.05882rem;overflow:visible}[data-v-4a89caca] .navigator-filter .quick-navigation-open{margin-left:var(--nav-filter-horizontal-padding);width:calc(var(--nav-filter-horizontal-padding)*2)}.doc-topic-view[data-v-4a89caca]{--delay:1s;display:flex;flex-flow:column;background:var(--colors-text-background,var(--color-text-background))}.doc-topic-view .delay-hiding-leave-active[data-v-4a89caca]{transition:display var(--delay)}.doc-topic-aside[data-v-4a89caca]{height:100%;box-sizing:border-box;border-right:1px solid var(--color-grid)}@media only screen and (max-width:1023px){.doc-topic-aside[data-v-4a89caca]{background:var(--color-fill);border-right:none}.sidebar-transitioning .doc-topic-aside[data-v-4a89caca]{border-right:1px solid var(--color-grid)}}.topic-wrapper[data-v-4a89caca]{flex:1 1 auto;width:100%}.full-width-container[data-v-4a89caca]{max-width:1920px;margin-left:auto;margin-right:auto}@media only screen and (min-width:1920px){.full-width-container[data-v-4a89caca]{border-left:1px solid var(--color-grid);border-right:1px solid var(--color-grid);box-sizing:border-box}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic.b6287bcf.css b/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic.b6287bcf.css new file mode 100644 index 0000000..d2a4800 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic.b6287bcf.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.generic-modal[data-v-795f7b59]{position:fixed;top:0;left:0;right:0;bottom:0;margin:0;z-index:11000;display:flex;align-items:center;justify-content:center;flex-wrap:wrap;background:none;overflow:auto}.modal-fullscreen[data-v-795f7b59]{align-items:stretch}.modal-fullscreen .container[data-v-795f7b59]{margin:0;flex:1;width:100%;height:100%;padding-top:env(safe-area-inset-top);padding-right:env(safe-area-inset-right);padding-bottom:env(safe-area-inset-bottom);padding-left:env(safe-area-inset-left)}.modal-standard[data-v-795f7b59]{padding:20px}.modal-standard .container[data-v-795f7b59]{padding:60px;border-radius:var(--border-radius,4px)}@media screen{[data-color-scheme=dark] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .modal-standard .container[data-v-795f7b59]{background:#1d1d1f}}@media only screen and (max-width:735px){.modal-standard[data-v-795f7b59]{padding:0;align-items:stretch}.modal-standard .container[data-v-795f7b59]{margin:20px 0 0;padding:50px 30px;flex:1;width:100%;border-bottom-left-radius:0;border-bottom-right-radius:0}}.backdrop[data-v-795f7b59]{overflow:auto;background:var(--backdrop-background,rgba(0,0,0,.4));-webkit-overflow-scrolling:touch;width:100%;height:100%;position:fixed}.container[data-v-795f7b59]{margin-left:auto;margin-right:auto;width:980px;background:var(--colors-generic-modal-background,var(--color-generic-modal-background));z-index:1;position:relative;overflow:auto;max-width:100%}@media only screen and (max-width:1250px){.container[data-v-795f7b59]{width:692px}}@media only screen and (max-width:735px){.container[data-v-795f7b59]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-795f7b59]{width:215px}}.close[data-v-795f7b59]{position:absolute;z-index:9999;top:22px;left:22px;width:17px;height:17px;color:#666;cursor:pointer;background:none;border:0;display:flex;align-items:center}.close .close-icon[data-v-795f7b59]{fill:currentColor;width:100%;height:100%}.theme-dark .container[data-v-795f7b59]{background:#000}.theme-dark .container .close[data-v-795f7b59]{color:#b0b0b0}.theme-code .container[data-v-795f7b59]{background-color:var(--code-background,var(--color-code-background))} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic~tutorials-overview.d6f5411c.css b/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic~tutorials-overview.d6f5411c.css new file mode 100644 index 0000000..f81c8dc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/documentation-topic~topic~tutorials-overview.d6f5411c.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */aside[data-v-3ccce809]{-moz-column-break-inside:avoid;break-inside:avoid;border-radius:var(--aside-border-radius,var(--border-radius,4px));border-style:var(--aside-border-style,solid);border-width:var(--aside-border-width,0 0 0 6px);padding:.94118rem;text-align:start}aside .label[data-v-3ccce809]{font-size:1rem;line-height:1.52941;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}aside .label+[data-v-3ccce809]{margin-top:var(--spacing-stacked-margin-small)}aside.deprecated[data-v-3ccce809]{background-color:var(--color-aside-deprecated-background);border-color:var(--color-aside-deprecated-border);box-shadow:0 0 0 0 var(--color-aside-deprecated-border) inset,0 0 0 0 var(--color-aside-deprecated-border)}aside.deprecated .label[data-v-3ccce809]{color:var(--color-aside-deprecated)}aside.experiment[data-v-3ccce809]{background-color:var(--color-aside-experiment-background);border-color:var(--color-aside-experiment-border);box-shadow:0 0 0 0 var(--color-aside-experiment-border) inset,0 0 0 0 var(--color-aside-experiment-border)}aside.experiment .label[data-v-3ccce809]{color:var(--color-aside-experiment)}aside.important[data-v-3ccce809]{background-color:var(--color-aside-important-background);border-color:var(--color-aside-important-border);box-shadow:0 0 0 0 var(--color-aside-important-border) inset,0 0 0 0 var(--color-aside-important-border)}aside.important .label[data-v-3ccce809]{color:var(--color-aside-important)}aside.note[data-v-3ccce809]{background-color:var(--color-aside-note-background);border-color:var(--color-aside-note-border);box-shadow:0 0 0 0 var(--color-aside-note-border) inset,0 0 0 0 var(--color-aside-note-border)}aside.note .label[data-v-3ccce809]{color:var(--color-aside-note)}aside.tip[data-v-3ccce809]{background-color:var(--color-aside-tip-background);border-color:var(--color-aside-tip-border);box-shadow:0 0 0 0 var(--color-aside-tip-border) inset,0 0 0 0 var(--color-aside-tip-border)}aside.tip .label[data-v-3ccce809]{color:var(--color-aside-tip)}aside.warning[data-v-3ccce809]{background-color:var(--color-aside-warning-background);border-color:var(--color-aside-warning-border);box-shadow:0 0 0 0 var(--color-aside-warning-border) inset,0 0 0 0 var(--color-aside-warning-border)}aside.warning .label[data-v-3ccce809]{color:var(--color-aside-warning)}code[data-v-08295b2f]:before{content:attr(data-before-code)}code[data-v-08295b2f]:after{content:attr(data-after-code)}code[data-v-08295b2f]:after,code[data-v-08295b2f]:before{display:block;position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}.swift-file-icon.file-icon[data-v-c01a6890]{height:1rem}.file-icon[data-v-7c381064]{position:relative;align-items:flex-end;height:24px;margin:0 .5rem 0 1rem}.filename[data-v-c8c40662]{color:var(--text,var(--colors-secondary-label,var(--color-secondary-label)));font-size:.94118rem;line-height:1.1875;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:1rem}@media only screen and (max-width:735px){.filename[data-v-c8c40662]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-top:0}}.filename>a[data-v-c8c40662],.filename>span[data-v-c8c40662]{display:flex;align-items:center;line-height:normal}a[data-v-c8c40662]{color:var(--url,var(--color-link))}.code-line-container[data-v-59f42f5b]{display:inline-block;width:100%;box-sizing:border-box}.code-number[data-v-59f42f5b]{display:inline-block;padding:0 1rem 0 8px;text-align:right;min-width:2em;color:#666;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-59f42f5b]:before{content:attr(data-line-number)}.highlighted[data-v-59f42f5b]{background:var(--line-highlight,var(--color-code-line-highlight));border-left:4px solid var(--color-code-line-highlight-border)}.highlighted .code-number[data-v-59f42f5b]{padding-left:4px}pre[data-v-59f42f5b]{padding:14px 0;display:flex;overflow:unset;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal;height:100%}@media only screen and (max-width:735px){pre[data-v-59f42f5b]{padding-top:.82353rem}}code[data-v-59f42f5b]{white-space:pre;word-wrap:normal;flex-grow:9999}.code-listing[data-v-59f42f5b],.container-general[data-v-59f42f5b]{display:flex}.code-listing[data-v-59f42f5b]{flex-direction:column;min-height:100%;border-radius:var(--code-border-radius,var(--border-radius,4px));overflow:hidden;filter:blur(0)}.code-listing.single-line[data-v-59f42f5b]{border-radius:var(--border-radius,4px)}.container-general[data-v-59f42f5b]{overflow:auto}.container-general[data-v-59f42f5b],pre[data-v-59f42f5b]{flex-grow:1}.header-anchor[data-v-6007a8a4]{color:inherit;text-decoration:none;position:relative;padding-right:23px;display:inline-block}.header-anchor .icon[data-v-6007a8a4]{position:absolute;right:0;bottom:.2em;display:none;height:16px;margin-left:7px}.header-anchor:focus .icon[data-v-6007a8a4],.header-anchor:hover .icon[data-v-6007a8a4]{display:inline}code[data-v-05f4a5b7]{speak-punctuation:code}.container-general[data-v-25a17a0e]{display:flex;flex-flow:row wrap}.container-general .code-line[data-v-25a17a0e]{flex:1 0 auto}.code-line-container[data-v-25a17a0e]{width:100%;align-items:center;display:flex;border-left:4px solid transparent;counter-increment:linenumbers;padding-right:14px}.code-number[data-v-25a17a0e]{font-size:.70588rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:0 1rem 0 8px;text-align:right;min-width:2.01em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.code-number[data-v-25a17a0e]:before{content:counter(linenumbers)}.code-line[data-v-25a17a0e]{display:flex}pre[data-v-25a17a0e]{padding:14px 0;display:flex;flex-flow:row wrap;overflow:auto;-webkit-overflow-scrolling:touch;white-space:pre;word-wrap:normal}@media only screen and (max-width:735px){pre[data-v-25a17a0e]{padding-top:.82353rem}}.collapsible-code-listing[data-v-25a17a0e]{background:var(--background,var(--color-code-background));border-color:var(--colors-grid,var(--color-grid));color:var(--text,var(--color-code-plain));border-radius:var(--border-radius,4px);border-style:solid;border-width:1px;counter-reset:linenumbers;font-size:15px}.collapsible-code-listing.single-line[data-v-25a17a0e]{border-radius:var(--border-radius,4px)}.collapsible[data-v-25a17a0e]{background:var(--color-code-collapsible-background);color:var(--color-code-collapsible-text)}.collapsed[data-v-25a17a0e]:before{content:"⋯";display:inline-block;font-family:monospace;font-weight:700;height:100%;line-height:1;text-align:right;width:2.3rem}.collapsed .code-line-container[data-v-25a17a0e]{height:0;visibility:hidden}.row[data-v-be73599c]{box-sizing:border-box;display:flex;flex-flow:row wrap}.col[data-v-2ee3ad8b]{box-sizing:border-box;flex:none}.xlarge-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xlarge-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xlarge-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xlarge-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xlarge-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xlarge-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xlarge-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xlarge-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xlarge-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xlarge-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xlarge-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xlarge-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xlarge-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xlarge-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}.large-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.large-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.large-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.large-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.large-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.large-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.large-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.large-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.large-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.large-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.large-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.large-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.large-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.large-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}@media only screen and (max-width:1250px){.medium-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.medium-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.medium-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.medium-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.medium-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.medium-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.medium-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.medium-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.medium-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.medium-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.medium-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.medium-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.medium-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.medium-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:735px){.small-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.small-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.small-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.small-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.small-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.small-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.small-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.small-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.small-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.small-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.small-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.small-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.small-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.small-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}@media only screen and (max-width:320px){.xsmall-1[data-v-2ee3ad8b]{flex-basis:8.33333%;max-width:8.33333%}.xsmall-2[data-v-2ee3ad8b]{flex-basis:16.66667%;max-width:16.66667%}.xsmall-3[data-v-2ee3ad8b]{flex-basis:25%;max-width:25%}.xsmall-4[data-v-2ee3ad8b]{flex-basis:33.33333%;max-width:33.33333%}.xsmall-5[data-v-2ee3ad8b]{flex-basis:41.66667%;max-width:41.66667%}.xsmall-6[data-v-2ee3ad8b]{flex-basis:50%;max-width:50%}.xsmall-7[data-v-2ee3ad8b]{flex-basis:58.33333%;max-width:58.33333%}.xsmall-8[data-v-2ee3ad8b]{flex-basis:66.66667%;max-width:66.66667%}.xsmall-9[data-v-2ee3ad8b]{flex-basis:75%;max-width:75%}.xsmall-10[data-v-2ee3ad8b]{flex-basis:83.33333%;max-width:83.33333%}.xsmall-11[data-v-2ee3ad8b]{flex-basis:91.66667%;max-width:91.66667%}.xsmall-12[data-v-2ee3ad8b]{flex-basis:100%;max-width:100%}.xsmall-centered[data-v-2ee3ad8b]{margin-left:auto;margin-right:auto}.xsmall-uncentered[data-v-2ee3ad8b]{margin-left:0;margin-right:0}}.tabnav[data-v-5283512a]{margin:0 0 1.47059rem 0;display:flex}.tabnav--center[data-v-5283512a]{justify-content:center}.tabnav--end[data-v-5283512a]{justify-content:flex-end}.tabnav--vertical[data-v-5283512a]{flex-flow:column wrap}.tabnav--vertical .tabnav-items[data-v-5283512a]{flex-flow:column;overflow:hidden}.tabnav--vertical[data-v-5283512a] .tabnav-item{padding-left:0}.tabnav--vertical[data-v-5283512a] .tabnav-item .tabnav-link{padding-top:8px}.tabnav-items[data-v-5283512a]{display:flex;margin:0;text-align:center}.tabnav-item[data-v-6aa9882a]{border-bottom:1px solid;border-color:var(--colors-tabnav-item-border-color,var(--color-tabnav-item-border-color));display:flex;list-style:none;padding-left:1.76471rem;margin:0;outline:none}.tabnav-item[data-v-6aa9882a]:first-child{padding-left:0}.tabnav-item[data-v-6aa9882a]:nth-child(n+1){margin:0}.tabnav-link[data-v-6aa9882a]{color:var(--colors-secondary-label,var(--color-secondary-label));font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:6px 0;margin-top:4px;margin-bottom:4px;text-align:left;text-decoration:none;display:block;position:relative;z-index:0;width:100%}.tabnav-link[data-v-6aa9882a]:hover{text-decoration:none}.tabnav-link[data-v-6aa9882a]:focus{outline-offset:-1px}.tabnav-link[data-v-6aa9882a]:after{content:"";position:absolute;bottom:-5px;left:0;width:100%;border:1px solid transparent}.tabnav-link.active[data-v-6aa9882a]{color:var(--colors-text,var(--color-text));cursor:default;z-index:10}.tabnav-link.active[data-v-6aa9882a]:after{border-bottom-color:var(--colors-text,var(--color-text))}.controls[data-v-c84e62a6]{margin-top:5px;font-size:14px;display:flex;justify-content:flex-end}.controls a[data-v-c84e62a6]{color:var(--colors-text,var(--color-text));display:flex;align-items:center}.controls .control-icon[data-v-c84e62a6]{width:1.05em;margin-right:.3em}.caption[data-v-1b76f4e0]{font-size:.82353rem;line-height:1.5;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 0 var(--spacing-stacked-margin-large) 0}.caption.trailing[data-v-1b76f4e0]{margin:var(--spacing-stacked-margin-large) 0 0 0;text-align:center}caption.trailing[data-v-1b76f4e0]{caption-side:bottom}[data-v-1b76f4e0] p{display:inline-block}[data-v-3a939631] img{max-width:100%}.table-wrapper[data-v-5ed73c89]{overflow:auto;-webkit-overflow-scrolling:touch}*+.table-wrapper[data-v-5ed73c89],.table-wrapper[data-v-5ed73c89]+*{margin-top:var(--spacing-stacked-margin-xlarge)}table[data-v-5ed73c89]{border-style:hidden}[data-v-5ed73c89] th{font-weight:600;word-break:keep-all;-webkit-hyphens:auto;hyphens:auto}[data-v-5ed73c89] td,[data-v-5ed73c89] th{border-color:var(--color-fill-gray-tertiary);border-style:solid;border-width:var(--table-border-width,1px 1px);padding:.58824rem}[data-v-5ed73c89] td.left-cell,[data-v-5ed73c89] th.left-cell{text-align:left}[data-v-5ed73c89] td.right-cell,[data-v-5ed73c89] th.right-cell{text-align:right}[data-v-5ed73c89] td.center-cell,[data-v-5ed73c89] th.center-cell{text-align:center}s[data-v-7fc51673]:before{content:attr(data-before-text)}s[data-v-7fc51673]:after{content:attr(data-after-text)}s[data-v-7fc51673]:after,s[data-v-7fc51673]:before{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}small[data-v-77035f61]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray)}.device-frame[data-v-28ae8fd3]{position:relative;width:var(--frame-width);aspect-ratio:var(--frame-aspect);max-width:100%;margin-left:auto;margin-right:auto;overflow:hidden}*+.device-frame[data-v-28ae8fd3],.device-frame[data-v-28ae8fd3]+*{margin-top:40px}.device[data-v-28ae8fd3]{background-image:var(--device-light-url);background-repeat:no-repeat;background-size:100%;width:100%;height:100%;position:relative;pointer-events:none}@media screen{[data-color-scheme=dark] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .device[data-v-28ae8fd3]{background-image:var(--device-dark-url,var(--device-light-url))}}.no-device .device[data-v-28ae8fd3]{display:none}.device-screen.with-device[data-v-28ae8fd3]{position:absolute;left:var(--screen-left);top:var(--screen-top);height:var(--screen-height);width:var(--screen-width);display:flex}.device-screen.with-device>[data-v-28ae8fd3]{flex:1}.device-screen.with-device[data-v-28ae8fd3] img{width:100%;height:100%;-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;margin:0}.device-screen.with-device[data-v-28ae8fd3] video{-o-object-fit:contain;object-fit:contain;-o-object-position:top;object-position:top;width:100%;height:auto}.video-replay-container .control-button[data-v-7653dfd0]{display:flex;align-items:center;justify-content:center;cursor:pointer;margin-top:.5rem;-webkit-tap-highlight-color:transparent}.video-replay-container .control-button svg.control-icon[data-v-7653dfd0]{height:12px;width:12px;margin-left:.3em}[data-v-dcbc7b38] img,[data-v-dcbc7b38] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.asset[data-v-035a093f]{margin-left:auto;margin-right:auto}*+.asset[data-v-035a093f],.asset[data-v-035a093f]+*{margin-top:var(--spacing-stacked-margin-xlarge)}[data-v-035a093f] video{display:block;margin-left:auto;margin-right:auto;-o-object-fit:contain;object-fit:contain;max-width:100%}.column[data-v-0f654188]{grid-column:span var(--col-span);min-width:0}@media only screen and (max-width:735px){.column[data-v-0f654188]{grid-column:span 1}}.row[data-v-1bcb2d0f]{display:grid;grid-auto-flow:column;grid-auto-columns:1fr;grid-gap:var(--col-gap,20px)}@media only screen and (max-width:735px){.row[data-v-1bcb2d0f]{grid-template-columns:1fr;grid-auto-flow:row}}.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-large);grid-template-columns:repeat(var(--col-count),1fr);grid-auto-flow:row}@media only screen and (max-width:1250px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-medium,var(--col-count-large))}}@media only screen and (max-width:735px){.row.with-columns[data-v-1bcb2d0f]{--col-count:var(--col-count-small)}}*+.row[data-v-1bcb2d0f],*+.TabNavigator[data-v-e671a734],.row[data-v-1bcb2d0f]+*,.TabNavigator[data-v-e671a734]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.TabNavigator .tabnav[data-v-e671a734]{overflow:auto;white-space:nowrap}.TabNavigator .tabs-content-container[data-v-e671a734]{position:relative;overflow:hidden}.tabs--vertical[data-v-e671a734]{display:flex;flex-flow:row-reverse}@media only screen and (max-width:735px){.tabs--vertical[data-v-e671a734]{flex-flow:column-reverse}}.tabs--vertical .tabnav[data-v-e671a734]{width:30%;flex:0 0 auto;white-space:normal;margin:0}@media only screen and (max-width:735px){.tabs--vertical .tabnav[data-v-e671a734]{width:100%}}.tabs--vertical .tabs-content[data-v-e671a734]{flex:1 1 auto;min-width:0;padding-right:var(--spacing-stacked-margin-xlarge)}@media only screen and (max-width:735px){.tabs--vertical .tabs-content[data-v-e671a734]{padding-right:0;padding-bottom:var(--spacing-stacked-margin-large)}}.fade-enter-active[data-v-e671a734],.fade-leave-active[data-v-e671a734]{transition:opacity .2s ease-in-out}.fade-enter[data-v-e671a734],.fade-leave-to[data-v-e671a734]{opacity:0}.fade-leave-active[data-v-e671a734]{position:absolute;top:0;left:0;right:0}.tasklist[data-v-6a56a858]{--checkbox-width:1rem;--indent-width:calc(var(--checkbox-width)/2);--content-margin:var(--indent-width);list-style-type:none;margin-left:var(--indent-width)}p[data-v-6a56a858]{margin-left:var(--content-margin)}p[data-v-6a56a858]:only-child{--content-margin:calc(var(--checkbox-width) + var(--indent-width))}input[type=checkbox]+p[data-v-6a56a858]{display:inline-block}.button-cta[data-v-c9c81868]{background:var(--colors-button-light-background,var(--color-button-background));border-color:var(--color-button-border,currentcolor);border-radius:var(--button-border-radius,var(--border-radius,4px));border-style:var(--button-border-style,none);border-width:var(--button-border-width,medium);color:var(--colors-button-text,var(--color-button-text));cursor:pointer;min-width:1.76471rem;padding:.23529rem .88235rem;text-align:center;white-space:nowrap;display:inline-block;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.button-cta[data-v-c9c81868]:active{background:var(--colors-button-light-backgroundActive,var(--color-button-background-active));outline:none}.button-cta[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-light-backgroundHover,var(--color-button-background-hover));text-decoration:none}.button-cta[data-v-c9c81868]:disabled{opacity:.32;cursor:default}.fromkeyboard .button-cta[data-v-c9c81868]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.button-cta.is-dark[data-v-c9c81868]{background:var(--colors-button-dark-background,#06f)}.button-cta.is-dark[data-v-c9c81868]:active{background:var(--colors-button-dark-backgroundActive,var(--color-button-background-active))}.button-cta.is-dark[data-v-c9c81868]:hover:not([disabled]){background:var(--colors-button-dark-backgroundHover,var(--color-button-background-hover))}.card-cover-wrap.rounded[data-v-0c1c40a1]{border-radius:var(--border-radius,4px);overflow:hidden}.card-cover[data-v-0c1c40a1]{background-color:var(--color-card-background);display:block;height:var(--card-cover-height,180px)}.card-cover.fallback[data-v-0c1c40a1],.card-cover[data-v-0c1c40a1] img{width:100%;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;display:block;margin:0}.card-cover[data-v-0c1c40a1] img{height:100%}.card[data-v-328d568a]{overflow:hidden;display:block;transition:box-shadow,transform .16s ease-out;will-change:box-shadow,transform;-webkit-backface-visibility:hidden;backface-visibility:hidden;height:var(--card-height);border-radius:var(--border-radius,4px)}.card[data-v-328d568a]:hover{text-decoration:none}.card:hover .link[data-v-328d568a]{text-decoration:underline}.card[data-v-328d568a]:hover{box-shadow:0 5px 10px var(--color-card-shadow);transform:scale(1.007)}@media (prefers-reduced-motion:reduce){.card[data-v-328d568a]:hover{box-shadow:none;transform:none}}.card.small[data-v-328d568a]{--card-height:408px;--card-details-height:139px;--card-cover-height:235px}@media only screen and (max-width:1250px){.card.small[data-v-328d568a]{--card-height:341px;--card-details-height:144px;--card-cover-height:163px}}.card.large[data-v-328d568a]{--card-height:556px;--card-details-height:163px;--card-cover-height:359px}@media only screen and (max-width:1250px){.card.large[data-v-328d568a]{--card-height:420px;--card-details-height:137px;--card-cover-height:249px}}.card.floating-style[data-v-328d568a]{--color-card-shadow:transparent;--card-height:auto;--card-details-height:auto}.details[data-v-328d568a]{background-color:var(--color-card-background);padding:17px;position:relative;height:var(--card-details-height);font-size:.82353rem;line-height:1.28571}.details[data-v-328d568a],.large .details[data-v-328d568a]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .details[data-v-328d568a]{font-size:1rem;line-height:1.47059}@media only screen and (max-width:1250px){.large .details[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.floating-style .details[data-v-328d568a]{--color-card-background:transparent;padding:17px 0}.eyebrow[data-v-328d568a]{color:var(--color-card-eyebrow);display:block;margin-bottom:4px;font-size:.82353rem;line-height:1.28571}.eyebrow[data-v-328d568a],.large .eyebrow[data-v-328d568a]{font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.large .eyebrow[data-v-328d568a]{font-size:1rem;line-height:1.23529}@media only screen and (max-width:1250px){.large .eyebrow[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title[data-v-328d568a]{color:var(--color-card-content-text);font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-328d568a]{font-size:.82353rem;line-height:1.28571;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.large .title[data-v-328d568a]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.large .title[data-v-328d568a]{font-size:1rem;line-height:1.23529;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.card-content[data-v-328d568a]{color:var(--color-card-content-text);margin-top:4px}.link[data-v-328d568a]{bottom:17px;display:flex;align-items:center;position:absolute}.link .link-icon[data-v-328d568a]{height:.6em;width:.6em;margin-left:.3em}.floating-style .link[data-v-328d568a]{bottom:unset;margin-top:var(--spacing-stacked-margin-large);position:relative}@media only screen and (max-width:735px){.card[data-v-328d568a]{margin-left:auto;margin-right:auto}.card+.card[data-v-328d568a]{margin-bottom:20px;margin-top:20px}.card.large[data-v-328d568a],.card.small[data-v-328d568a]{--card-height:auto;--card-details-height:auto;min-width:280px;max-width:300px;--card-cover-height:227px}.card.large .link[data-v-328d568a],.card.small .link[data-v-328d568a]{bottom:unset;margin-top:7px;position:relative}}.nav-menu-items[data-v-67c1c0a5]{display:flex;justify-content:flex-end}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{display:block;opacity:0;padding:1rem 1.88235rem 1.64706rem 1.88235rem;transform:translate3d(0,-50px,0);transition:transform 1s cubic-bezier(.07,1.06,.27,.95) .5s,opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s}.nav--is-open.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]{opacity:1;transform:translateZ(0);transition-delay:.2s,.4s}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):not(:last-child){padding-bottom:0}.nav--in-breakpoint-range .nav-menu-items[data-v-67c1c0a5]:not(:only-child):last-child{padding-top:0}.TopicTypeIcon[data-v-18b61706]{width:1em;height:1em;flex:0 0 auto;color:var(--icon-color,var(--color-figure-gray-secondary))}.TopicTypeIcon[data-v-18b61706] picture{flex:1}.TopicTypeIcon[data-v-18b61706] img,.TopicTypeIcon svg[data-v-18b61706]{display:block;width:100%;height:100%;-o-object-fit:contain;object-fit:contain}.nav[data-v-5c0521d3]{position:sticky;top:0;width:100%;height:3.05882rem;z-index:9997;--nav-padding:1.29412rem;color:var(--color-nav-color)}@media print{.nav[data-v-5c0521d3]{position:relative}}@media only screen and (max-width:767px){.nav[data-v-5c0521d3]{min-width:320px;height:2.82353rem}}.theme-dark.nav[data-v-5c0521d3]{background:none;color:var(--color-nav-dark-color)}.nav__wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.nav__background[data-v-5c0521d3]{position:absolute;left:0;top:0;width:100%;height:100%;z-index:1;transition:background-color 0s ease-in}.nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-keyline)}.nav--no-bg-transition .nav__background[data-v-5c0521d3]{transition:none!important}.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background);-webkit-backdrop-filter:none;backdrop-filter:none}.nav--is-open.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-solid-background)}.nav--is-open.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.nav--is-sticking.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3],.theme-dark.nav--solid-background .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-solid-background)}.nav--in-breakpoint-range .nav__background[data-v-5c0521d3]{min-height:2.82353rem;transition:background-color 0s ease .7s}.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-sticking .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-sticking .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-stuck)}}.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-stuck)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-sticking .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-stuck)}}.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-expanded);max-height:none;transition:background-color 0s ease;transition-property:background-color,-webkit-backdrop-filter;transition-property:background-color,backdrop-filter;transition-property:background-color,backdrop-filter,-webkit-backdrop-filter}.nav--is-open .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-sticking-expanded-keyline)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.nav--is-open .nav__background[data-v-5c0521d3]{-webkit-backdrop-filter:saturate(180%) blur(20px);backdrop-filter:saturate(180%) blur(20px);background-color:var(--color-nav-uiblur-expanded)}}.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-expanded)}@supports ((-webkit-backdrop-filter:initial) or (backdrop-filter:initial)){.theme-dark.nav--is-open .nav__background[data-v-5c0521d3]{background-color:var(--color-nav-dark-uiblur-expanded)}}.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-keyline)}.nav--is-open.theme-dark .nav__background[data-v-5c0521d3]:after,.nav--is-sticking.theme-dark .nav__background[data-v-5c0521d3]:after{background-color:var(--color-nav-dark-sticking-expanded-keyline)}.nav__background[data-v-5c0521d3]:after{content:"";display:block;position:absolute;top:100%;left:50%;transform:translateX(-50%);width:980px;height:1px;z-index:1}@media only screen and (max-width:1023px){.nav__background[data-v-5c0521d3]:after{width:100%}}.nav--noborder .nav__background[data-v-5c0521d3]:after{display:none}.nav--is-sticking.nav--noborder .nav__background[data-v-5c0521d3]:after{display:block}.nav--fullwidth-border .nav__background[data-v-5c0521d3]:after,.nav--is-open .nav__background[data-v-5c0521d3]:after,.nav--is-sticking .nav__background[data-v-5c0521d3]:after,.nav--solid-background .nav__background[data-v-5c0521d3]:after{width:100%}.nav-overlay[data-v-5c0521d3]{position:fixed;left:0;right:0;top:0;display:block;opacity:0}.nav--is-open .nav-overlay[data-v-5c0521d3]{background-color:rgba(51,51,51,.4);transition:opacity .7s cubic-bezier(.07,1.06,.27,.95) .2s;bottom:0;opacity:1}.nav-wrapper[data-v-5c0521d3]{position:absolute;top:0;left:0;width:100%;height:auto;min-height:100%;z-index:1}.pre-title[data-v-5c0521d3]{display:flex;overflow:hidden;padding-left:1.29412rem;margin-left:-1.29412rem}.pre-title[data-v-5c0521d3]:empty{display:none}.nav--in-breakpoint-range .pre-title[data-v-5c0521d3]{overflow:visible;padding:0;margin-left:0}.nav-content[data-v-5c0521d3]{display:flex;padding:0 var(--nav-padding);max-width:980px;margin:0 auto;position:relative;z-index:2;justify-content:space-between}.nav--is-wide-format .nav-content[data-v-5c0521d3]{box-sizing:border-box;max-width:1920px;margin-left:auto;margin-right:auto}@supports (padding:calc(max(0px))){.nav-content[data-v-5c0521d3]{padding-left:calc(max(var(--nav-padding), env(safe-area-inset-left)));padding-right:calc(max(var(--nav-padding), env(safe-area-inset-right)))}}@media only screen and (max-width:767px){.nav-content[data-v-5c0521d3]{padding:0 0 0 .94118rem}}.nav--in-breakpoint-range .nav-content[data-v-5c0521d3]{display:grid;grid-template-columns:auto 1fr auto;grid-auto-rows:minmax(-webkit-min-content,-webkit-max-content);grid-auto-rows:minmax(min-content,max-content);grid-template-areas:"pre-title title actions" "menu menu menu"}.nav-menu[data-v-5c0521d3]{font-size:.70588rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1 1 auto;display:flex;min-width:0}@media only screen and (max-width:767px){.nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.nav--in-breakpoint-range .nav-menu[data-v-5c0521d3]{font-size:.82353rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);grid-area:menu}.nav-menu-tray[data-v-5c0521d3]{width:100%;max-width:100%;align-items:center;display:flex;justify-content:space-between}.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{display:block;overflow:hidden;pointer-events:none;visibility:hidden;max-height:0;transition:max-height .4s ease-in 0s,visibility 0s linear 1s}.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 5.64706rem);overflow-y:auto;-webkit-overflow-scrolling:touch;pointer-events:auto;visibility:visible;transition-delay:.2s,0s}.nav--is-transitioning.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{overflow-y:hidden}.nav--is-sticking.nav--is-open.nav--in-breakpoint-range .nav-menu-tray[data-v-5c0521d3]{max-height:calc(100vh - 2.82353rem)}.nav-actions[data-v-5c0521d3]{display:flex;align-items:center}.nav--in-breakpoint-range .nav-actions[data-v-5c0521d3]{grid-area:actions;justify-content:flex-end}@media only screen and (max-width:767px){.nav-actions[data-v-5c0521d3]{padding-right:.94118rem}}.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{grid-area:title}.nav--is-wide-format.nav--in-breakpoint-range .pre-title+.nav-title[data-v-5c0521d3]{width:100%;justify-content:center}.nav-title[data-v-5c0521d3]{height:3.05882rem;font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);cursor:default;display:flex;align-items:center;white-space:nowrap;box-sizing:border-box}@media only screen and (max-width:767px){.nav-title[data-v-5c0521d3]{padding-top:0;height:2.82353rem;width:90%}}.nav-title[data-v-5c0521d3] span{height:100%;line-height:normal}.nav-title a[data-v-5c0521d3]{display:inline-block;letter-spacing:inherit;line-height:normal;margin:0;text-decoration:none;white-space:nowrap}.nav-title a[data-v-5c0521d3]:hover{text-decoration:none}@media only screen and (max-width:767px){.nav-title a[data-v-5c0521d3]{display:flex}}.nav-title[data-v-5c0521d3],.nav-title a[data-v-5c0521d3]{color:var(--color-figure-gray);transition:color 0s ease-in}.nav--is-open.theme-dark .nav-title[data-v-5c0521d3],.nav--is-open.theme-dark .nav-title a[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title[data-v-5c0521d3],.nav--is-sticking.theme-dark .nav-title a[data-v-5c0521d3],.theme-dark .nav-title[data-v-5c0521d3],.theme-dark .nav-title a[data-v-5c0521d3]{color:var(--color-nav-dark-link-color)}.nav-ax-toggle[data-v-5c0521d3]{display:none;position:absolute;top:0;left:0;width:1px;height:1px;z-index:10}.nav-ax-toggle[data-v-5c0521d3]:focus{outline-offset:-6px;width:100%;height:100%}.nav--in-breakpoint-range .nav-ax-toggle[data-v-5c0521d3]{display:block}.nav-menucta[data-v-5c0521d3]{cursor:pointer;display:none;align-items:center;overflow:hidden;width:1.17647rem;-webkit-tap-highlight-color:transparent;height:2.82353rem}.nav--in-breakpoint-range .nav-menucta[data-v-5c0521d3]{display:flex}.nav-menucta-chevron[data-v-5c0521d3]{display:block;position:relative;width:100%;height:.70588rem;transition:transform .3s linear}.nav-menucta-chevron[data-v-5c0521d3]:after,.nav-menucta-chevron[data-v-5c0521d3]:before{content:"";display:block;position:absolute;top:.58824rem;width:.70588rem;height:.05882rem;transition:transform .3s linear;background:var(--color-figure-gray)}.nav-menucta-chevron[data-v-5c0521d3]:before{right:50%;border-radius:.5px 0 0 .5px}.nav-menucta-chevron[data-v-5c0521d3]:after{left:50%;border-radius:0 .5px .5px 0}.nav-menucta-chevron[data-v-5c0521d3]:before{transform-origin:100% 100%;transform:rotate(40deg) scaleY(1.5)}.nav-menucta-chevron[data-v-5c0521d3]:after{transform-origin:0 100%;transform:rotate(-40deg) scaleY(1.5)}.nav--is-open .nav-menucta-chevron[data-v-5c0521d3]{transform:scaleY(-1)}.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:after,.theme-dark .nav-menucta-chevron[data-v-5c0521d3]:before{background:var(--color-nav-dark-link-color)}[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-link-color)}[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-link-color-hover);text-decoration:none}.theme-dark[data-v-5c0521d3] .nav-menu-link{color:var(--color-nav-dark-link-color)}.theme-dark[data-v-5c0521d3] .nav-menu-link:hover{color:var(--color-nav-dark-link-color-hover)}[data-v-5c0521d3] .nav-menu-link.current{color:var(--color-nav-current-link);cursor:default}[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-current-link)}.theme-dark[data-v-5c0521d3] .nav-menu-link.current,.theme-dark[data-v-5c0521d3] .nav-menu-link.current:hover{color:var(--color-nav-dark-current-link)}.reference-card-grid-item[data-v-08a5e3f8]{--card-cover-height:auto}.reference-card-grid-item.card.large[data-v-08a5e3f8]{--card-cover-height:auto;min-width:0;max-width:none}.reference-card-grid-item[data-v-08a5e3f8] .card-cover{aspect-ratio:16/9}.reference-card-grid-item[data-v-08a5e3f8] .card-cover-wrap{border:1px solid var(--color-link-block-card-border)}.reference-card-grid-item__image[data-v-08a5e3f8]{display:flex;align-items:center;justify-content:center;font-size:80px;background-color:var(--color-fill-gray-quaternary)}.reference-card-grid-item__icon[data-v-08a5e3f8]{margin:0;display:flex;justify-content:center}.reference-card-grid-item__icon[data-v-08a5e3f8] .icon-inline{flex:1 1 auto}.nav-menu-item[data-v-66cbfe4c]{margin-left:1.41176rem;list-style:none;min-width:0}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]{margin-left:0;width:100%;min-height:2.47059rem}.nav--in-breakpoint-range .nav-menu-item[data-v-66cbfe4c]:first-child .nav-menu-link{border-top:0}.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:0;transform:none;transition:.5s ease;transition-property:transform,opacity}.nav--is-open.nav--in-breakpoint-range .nav-menu-item--animated[data-v-66cbfe4c]{opacity:1;transform:translateZ(0);transition-delay:0s}.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="0"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="1"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="2"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="3"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="4"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="5"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="6"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:first-child,.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(2),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(3),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(4),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(5),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(6),.nav--is-open.nav--in-breakpoint-range [data-previous-menu-children-count="7"] .nav-menu-item--animated[data-v-66cbfe4c]:nth-child(7){transition-delay:0s}.links-block[data-v-ce6f87f6]+*{margin-top:var(--spacing-stacked-margin-xlarge)}.topic-link-block[data-v-ce6f87f6]{margin-top:15px} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/index.038e887c.css b/docs/PlaybackSDK.doccarchive/css/index.038e887c.css new file mode 100644 index 0000000..ee928eb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/index.038e887c.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-fill:var(--color-button-background);--toggle-color-text:var(--color-fill-blue);font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);border:1px solid var(--toggle-color-fill);border-radius:var(--toggle-border-radius-outer,var(--border-radius,4px));display:inline-flex;padding:1px}@media screen{[data-color-scheme=dark] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .color-scheme-toggle[data-v-02a6f6ec]{--toggle-color-text:var(--color-figure-blue)}}@media print{.color-scheme-toggle[data-v-02a6f6ec]{display:none}}input[data-v-02a6f6ec]{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fromkeyboard label[data-v-02a6f6ec]:focus-within{outline:4px solid var(--color-focus-color);outline-offset:1px}.text[data-v-02a6f6ec]{border:1px solid transparent;border-radius:var(--toggle-border-radius-inner,2px);color:var(--toggle-color-text);display:inline-block;text-align:center;padding:1px 6px;min-width:42px;box-sizing:border-box}.text[data-v-02a6f6ec]:hover{cursor:pointer}input:checked+.text[data-v-02a6f6ec]{--toggle-color-text:var(--color-button-text);background:var(--toggle-color-fill);border-color:var(--toggle-color-fill)}.footer[data-v-4e049dbd]{border-top:1px solid var(--color-grid)}.row[data-v-4e049dbd]{margin-left:auto;margin-right:auto;width:980px;display:flex;flex-direction:row-reverse;margin:20px auto}@media only screen and (max-width:1250px){.row[data-v-4e049dbd]{width:692px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-4e049dbd]{width:215px}}@media only screen and (max-width:735px){.row[data-v-4e049dbd]{width:100%;padding:0 .94118rem;box-sizing:border-box}}.InitialLoadingPlaceholder[data-v-35c356b6]{background:var(--colors-loading-placeholder-background,var(--color-loading-placeholder-background));height:100vh;width:100%}.svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-light,var(--color-svg-icon));transform:scale(1);-webkit-transform:scale(1);overflow:visible}.theme-dark .svg-icon[data-v-33d3200a]{fill:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.svg-icon.icon-inline[data-v-33d3200a]{display:inline-block;vertical-align:middle;fill:currentColor}.svg-icon.icon-inline[data-v-33d3200a] .svg-icon-stroke{stroke:currentColor}[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-light,var(--color-svg-icon))}.theme-dark[data-v-33d3200a] .svg-icon-stroke{stroke:var(--colors-svg-icon-fill-dark,var(--color-svg-icon))}.suggest-lang[data-v-ad72c62e]{background:#000;color:#fff;display:flex;justify-content:center;border-bottom:1px solid var(--color-grid)}.suggest-lang__wrapper[data-v-ad72c62e]{display:flex;align-items:center;width:100%;max-width:var(--wrapper-max-width,1920px);margin:0 .94118rem;position:relative;height:52px}.suggest-lang__link[data-v-ad72c62e]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin:0 auto;color:#09f}.suggest-lang__close-icon-wrapper[data-v-ad72c62e]{position:absolute;right:-.23529rem;top:0;height:100%;box-sizing:border-box;display:flex;align-items:center;z-index:1}.suggest-lang__close-icon-button[data-v-ad72c62e]{padding:.23529rem}.suggest-lang__close-icon-button .close-icon[data-v-ad72c62e]{width:8px;display:block}.suggest-lang .inline-chevron-right-icon[data-v-ad72c62e]{padding-left:.23529rem;width:8px}select[data-v-7e4d9b69]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-fill-blue);padding-right:15px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;border:none;cursor:pointer}select[data-v-7e4d9b69]:hover{text-decoration:underline}.locale-selector[data-v-7e4d9b69]{position:relative}.svg-icon.icon-inline[data-v-7e4d9b69]{position:absolute;fill:var(--color-fill-blue);right:2px;bottom:7px;height:5px}html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;background-color:var(--colors-text-background,var(--color-text-background));height:100%}abbr,blockquote,body,button,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hgroup,input,legend,li,ol,p,pre,ul{margin:0;padding:0}address,caption,code,figcaption,pre,th{font-size:1em;font-weight:400;font-style:normal}fieldset,iframe,img{border:0}caption,th{text-align:left}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}button{background:none;border:0;box-sizing:content-box;color:inherit;cursor:pointer;font:inherit;line-height:inherit;overflow:visible;vertical-align:inherit}button:disabled{cursor:default}:focus{outline:4px solid var(--color-focus-color);outline-offset:1px}::-moz-focus-inner{border:0;padding:0}@media print{#content,#main,body{color:#000}a,a:link,a:visited{color:#000;text-decoration:none}.hide,.noprint{display:none}}body{height:100%;min-width:320px}html{font:var(--typography-html-font,17px "Helvetica Neue","Helvetica","Arial",sans-serif);quotes:"“" "”"}html:lang(ja-JP){quotes:"「" "」"}body{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);background-color:var(--color-text-background);color:var(--colors-text,var(--color-text));font-style:normal;word-wrap:break-word;--spacing-stacked-margin-small:0.4em;--spacing-stacked-margin-large:0.8em;--spacing-stacked-margin-xlarge:calc(var(--spacing-stacked-margin-large)*2);--spacing-param:1.64706rem;--declaration-code-listing-margin:30px 0 0 0;--code-block-style-elements-padding:8px 14px}body,button,input,select,textarea{font-synthesis:none;-moz-font-feature-settings:"kern";-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;direction:ltr;text-align:left}h1,h2,h3,h4,h5,h6{color:var(--colors-header-text,var(--color-header-text))}h1+*,h2+*,h3+*,h4+*,h5+*,h6+*{margin-top:var(--spacing-stacked-margin-large)}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6,p+h1,p+h2,p+h3,p+h4,p+h5,p+h6,ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{margin-top:1.6em}ol+*,p+*,ul+*{margin-top:var(--spacing-stacked-margin-large)}ol,ul{margin-left:1.17647em}ol ol,ol ul,ul ol,ul ul{margin-top:0;margin-bottom:0}nav ol,nav ul{margin:0;list-style:none}li li{font-size:1em}a{color:var(--colors-link,var(--color-link))}a:link,a:visited{text-decoration:none}a:hover{text-decoration:underline}a:active{text-decoration:none}p+a{display:inline-block}b,strong{font-weight:600}cite,dfn,em,i{font-style:italic}sup{font-size:.6em;vertical-align:top;position:relative;bottom:-.2em}h1 sup,h2 sup,h3 sup{font-size:.4em}sup a{vertical-align:inherit;color:inherit}sup a:hover{color:var(--figure-blue);text-decoration:none}sub{line-height:1}abbr{border:0}pre{overflow:auto;-webkit-overflow-scrolling:auto;white-space:pre;word-wrap:normal}code{font-family:var(--typography-html-font-mono,Menlo,monospace);font-weight:inherit;letter-spacing:0}.syntax-addition{color:var(--syntax-addition,var(--color-syntax-addition))}.syntax-comment{color:var(--syntax-comment,var(--color-syntax-comments))}.syntax-quote{color:var(--syntax-quote,var(--color-syntax-comments))}.syntax-deletion{color:var(--syntax-deletion,var(--color-syntax-deletion))}.syntax-keyword{color:var(--syntax-keyword,var(--color-syntax-keywords))}.syntax-literal{color:var(--syntax-literal,var(--color-syntax-keywords))}.syntax-selector-tag{color:var(--syntax-selector-tag,var(--color-syntax-keywords))}.syntax-string{color:var(--syntax-string,var(--color-syntax-strings))}.syntax-bullet{color:var(--syntax-bullet,var(--color-syntax-characters))}.syntax-meta{color:var(--syntax-meta,var(--color-syntax-characters))}.syntax-number{color:var(--syntax-number,var(--color-syntax-characters))}.syntax-symbol{color:var(--syntax-symbol,var(--color-syntax-characters))}.syntax-tag{color:var(--syntax-tag,var(--color-syntax-characters))}.syntax-attr{color:var(--syntax-attr,var(--color-syntax-other-type-names))}.syntax-built_in{color:var(--syntax-built_in,var(--color-syntax-other-type-names))}.syntax-builtin-name{color:var(--syntax-builtin-name,var(--color-syntax-other-type-names))}.syntax-class{color:var(--syntax-class,var(--color-syntax-other-type-names))}.syntax-params{color:var(--syntax-params,var(--color-syntax-other-type-names))}.syntax-section{color:var(--syntax-section,var(--color-syntax-other-type-names))}.syntax-title{color:var(--syntax-title,var(--color-syntax-other-type-names))}.syntax-type{color:var(--syntax-type,var(--color-syntax-other-type-names))}.syntax-attribute{color:var(--syntax-attribute,var(--color-syntax-plain-text))}.syntax-identifier{color:var(--syntax-identifier,var(--color-syntax-plain-text))}.syntax-subst{color:var(--syntax-subst,var(--color-syntax-plain-text))}.syntax-doctag,.syntax-strong{font-weight:700}.syntax-emphasis,.syntax-link{font-style:italic}[data-syntax=swift] .syntax-meta{color:var(--syntax-meta,var(--color-syntax-keywords))}[data-syntax=swift] .syntax-class,[data-syntax=swift] .syntax-keyword+.syntax-params,[data-syntax=swift] .syntax-params+.syntax-params{color:unset}[data-syntax=json] .syntax-attr{color:var(--syntax-attr,var(--color-syntax-strings))}#skip-nav{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}#skip-nav:active,#skip-nav:focus{position:relative;float:left;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;color:var(--color-figure-blue);font-size:1em;padding:0 10px;z-index:100000;top:0;left:0;height:44px;line-height:44px;-webkit-clip-path:unset;clip-path:unset}.nav--in-breakpoint-range #skip-nav{display:none}.visuallyhidden{position:absolute;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(0 0 99.9% 99.9%);clip-path:inset(0 0 99.9% 99.9%);overflow:hidden;height:1px;width:1px;padding:0;border:0}@-webkit-keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}@keyframes pulse{0%{opacity:0}33%{opacity:1}66%{opacity:1}to{opacity:0}}.changed{border:1px solid var(--color-changes-modified);border-radius:var(--border-radius,4px);position:relative}.changed.displays-multiple-lines,.displays-multiple-lines .changed{border-radius:var(--border-radius,4px)}.changed:after{left:8px;background-image:url(../img/modified-icon.f496e73d.svg);background-repeat:no-repeat;bottom:0;content:" ";margin:auto;margin-right:8px;position:absolute;top:0;width:1.17647rem;height:1.17647rem;margin-top:.61765rem;z-index:2}@media screen{[data-color-scheme=dark] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed:after{background-image:url(../img/modified-icon.f496e73d.svg)}}.changed-added{border-color:var(--color-changes-added)}.changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}@media screen{[data-color-scheme=dark] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-added:after{background-image:url(../img/added-icon.d6f7e47d.svg)}}.changed-deprecated{border-color:var(--color-changes-deprecated)}.changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}@media screen{[data-color-scheme=dark] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .changed-deprecated:after{background-image:url(../img/deprecated-icon.015b4f17.svg)}}.changed.link-block:after,.changed.relationships-item:after,.link-block .changed:after{margin-top:10px}.change-added,.change-removed{padding:2px 0}.change-removed{background-color:var(--color-highlight-red)}.change-added{background-color:var(--color-highlight-green)}body{color-scheme:light dark}body[data-color-scheme=light]{color-scheme:light}body[data-color-scheme=dark]{color-scheme:dark}body{--color-fill:#fff;--color-fill-secondary:#f7f7f7;--color-fill-tertiary:#f0f0f0;--color-fill-quaternary:#282828;--color-fill-blue:#00f;--color-fill-light-blue-secondary:#d1d1ff;--color-fill-gray:#ccc;--color-fill-gray-secondary:#f5f5f5;--color-fill-gray-tertiary:#f0f0f0;--color-fill-gray-quaternary:#f0f0f0;--color-fill-green-secondary:#f0fff0;--color-fill-orange-secondary:#fffaf6;--color-fill-red-secondary:#fff0f5;--color-figure-blue:#36f;--color-figure-gray:#000;--color-figure-gray-secondary:#666;--color-figure-gray-secondary-alt:#666;--color-figure-gray-tertiary:#666;--color-figure-green:green;--color-figure-light-gray:#666;--color-figure-orange:#c30;--color-figure-red:red;--color-tutorials-teal:#000;--color-article-background:var(--color-fill-tertiary);--color-article-body-background:var(--color-fill);--color-aside-deprecated:var(--color-figure-gray);--color-aside-deprecated-background:var(--color-fill-orange-secondary);--color-aside-deprecated-border:var(--color-figure-orange);--color-aside-experiment:var(--color-figure-gray);--color-aside-experiment-background:var(--color-fill-gray-secondary);--color-aside-experiment-border:var(--color-figure-light-gray);--color-aside-important:var(--color-figure-gray);--color-aside-important-background:var(--color-fill-gray-secondary);--color-aside-important-border:var(--color-figure-light-gray);--color-aside-note:var(--color-figure-gray);--color-aside-note-background:var(--color-fill-gray-secondary);--color-aside-note-border:var(--color-figure-light-gray);--color-aside-tip:var(--color-figure-gray);--color-aside-tip-background:var(--color-fill-gray-secondary);--color-aside-tip-border:var(--color-figure-light-gray);--color-aside-warning:var(--color-figure-gray);--color-aside-warning-background:var(--color-fill-red-secondary);--color-aside-warning-border:var(--color-figure-red);--color-badge-default:var(--color-figure-light-gray);--color-badge-beta:var(--color-figure-gray-tertiary);--color-badge-deprecated:var(--color-figure-orange);--color-badge-dark-default:#fff;--color-badge-dark-beta:#b0b0b0;--color-badge-dark-deprecated:#f60;--color-button-background:var(--color-fill-blue);--color-button-background-active:#36f;--color-button-background-hover:var(--color-figure-blue);--color-button-text:#fff;--color-call-to-action-background:var(--color-fill-secondary);--color-changes-added:var(--color-figure-light-gray);--color-changes-added-hover:var(--color-figure-light-gray);--color-changes-deprecated:var(--color-figure-light-gray);--color-changes-deprecated-hover:var(--color-figure-light-gray);--color-changes-modified:var(--color-figure-light-gray);--color-changes-modified-hover:var(--color-figure-light-gray);--color-changes-modified-previous-background:var(--color-fill);--color-code-background:var(--color-fill-secondary);--color-code-collapsible-background:var(--color-fill-tertiary);--color-code-collapsible-text:var(--color-figure-gray-secondary-alt);--color-code-line-highlight:rgba(51,102,255,0.08);--color-code-line-highlight-border:var(--color-figure-blue);--color-code-plain:var(--color-figure-gray);--color-dropdown-background:hsla(0,0%,100%,0.8);--color-dropdown-border:#ccc;--color-dropdown-option-text:#666;--color-dropdown-text:#000;--color-dropdown-dark-background:hsla(0,0%,100%,0.1);--color-dropdown-dark-border:hsla(0,0%,94.1%,0.2);--color-dropdown-dark-option-text:#ccc;--color-dropdown-dark-text:#fff;--color-eyebrow:var(--color-figure-gray-secondary);--color-focus-border-color:var(--color-fill-blue);--color-focus-color:rgba(0,125,250,0.6);--color-form-error:var(--color-figure-red);--color-form-error-background:var(--color-fill-red-secondary);--color-form-valid:var(--color-figure-green);--color-form-valid-background:var(--color-fill-green-secondary);--color-generic-modal-background:var(--color-fill);--color-grid:var(--color-fill-gray);--color-header-text:var(--color-figure-gray);--color-hero-eyebrow:#ccc;--color-link:var(--color-figure-blue);--color-loading-placeholder-background:var(--color-fill);--color-nav-color:#666;--color-nav-current-link:rgba(0,0,0,0.6);--color-nav-expanded:#fff;--color-nav-hierarchy-collapse-background:#f0f0f0;--color-nav-hierarchy-collapse-borders:#ccc;--color-nav-hierarchy-item-borders:#ccc;--color-nav-keyline:rgba(0,0,0,0.2);--color-nav-link-color:#000;--color-nav-link-color-hover:#36f;--color-nav-outlines:#ccc;--color-nav-rule:hsla(0,0%,94.1%,0.5);--color-nav-solid-background:#fff;--color-nav-sticking-expanded-keyline:rgba(0,0,0,0.1);--color-nav-stuck:hsla(0,0%,100%,0.9);--color-nav-uiblur-expanded:hsla(0,0%,100%,0.9);--color-nav-uiblur-stuck:hsla(0,0%,100%,0.7);--color-nav-root-subhead:var(--color-tutorials-teal);--color-nav-dark-border-top-color:hsla(0,0%,100%,0.4);--color-nav-dark-color:#b0b0b0;--color-nav-dark-current-link:hsla(0,0%,100%,0.6);--color-nav-dark-expanded:#2a2a2a;--color-nav-dark-hierarchy-collapse-background:#424242;--color-nav-dark-hierarchy-collapse-borders:#666;--color-nav-dark-hierarchy-item-borders:#424242;--color-nav-dark-keyline:rgba(66,66,66,0.95);--color-nav-dark-link-color:#fff;--color-nav-dark-link-color-hover:#09f;--color-nav-dark-outlines:#575757;--color-nav-dark-rule:#575757;--color-nav-dark-solid-background:#000;--color-nav-dark-sticking-expanded-keyline:rgba(66,66,66,0.7);--color-nav-dark-stuck:rgba(42,42,42,0.9);--color-nav-dark-uiblur-expanded:rgba(42,42,42,0.9);--color-nav-dark-uiblur-stuck:rgba(42,42,42,0.7);--color-nav-dark-root-subhead:#fff;--color-runtime-preview-background:var(--color-fill-tertiary);--color-runtime-preview-disabled-text:hsla(0,0%,40%,0.6);--color-runtime-preview-text:var(--color-figure-gray-secondary);--color-secondary-label:var(--color-figure-gray-secondary);--color-step-background:var(--color-fill-secondary);--color-step-caption:var(--color-figure-gray-secondary);--color-step-focused:var(--color-figure-light-gray);--color-step-text:var(--color-figure-gray-secondary);--color-svg-icon:#666;--color-syntax-addition:var(--color-figure-green);--color-syntax-attributes:#947100;--color-syntax-characters:#272ad8;--color-syntax-comments:#707f8c;--color-syntax-deletion:var(--color-figure-red);--color-syntax-documentation-markup:#506375;--color-syntax-documentation-markup-keywords:#506375;--color-syntax-heading:#ba2da2;--color-syntax-keywords:#ad3da4;--color-syntax-marks:#000;--color-syntax-numbers:#272ad8;--color-syntax-other-class-names:#703daa;--color-syntax-other-constants:#4b21b0;--color-syntax-other-declarations:#047cb0;--color-syntax-other-function-and-method-names:#4b21b0;--color-syntax-other-instance-variables-and-globals:#703daa;--color-syntax-other-preprocessor-macros:#78492a;--color-syntax-other-type-names:#703daa;--color-syntax-param-internal-name:#404040;--color-syntax-plain-text:#000;--color-syntax-preprocessor-statements:#78492a;--color-syntax-project-class-names:#3e8087;--color-syntax-project-constants:#2d6469;--color-syntax-project-function-and-method-names:#2d6469;--color-syntax-project-instance-variables-and-globals:#3e8087;--color-syntax-project-preprocessor-macros:#78492a;--color-syntax-project-type-names:#3e8087;--color-syntax-strings:#d12f1b;--color-syntax-type-declarations:#03638c;--color-syntax-urls:#1337ff;--color-tabnav-item-border-color:var(--color-fill-gray);--color-text:var(--color-figure-gray);--color-text-background:var(--color-fill);--color-tutorial-assessments-background:var(--color-fill-secondary);--color-tutorial-background:var(--color-fill);--color-tutorial-navbar-dropdown-background:var(--color-fill);--color-tutorial-navbar-dropdown-border:var(--color-fill-gray);--color-tutorial-quiz-border-active:var(--color-figure-blue);--color-tutorials-overview-background:#161616;--color-tutorials-overview-content:#fff;--color-tutorials-overview-content-alt:#fff;--color-tutorials-overview-eyebrow:#ccc;--color-tutorials-overview-icon:#b0b0b0;--color-tutorials-overview-link:#09f;--color-tutorials-overview-navigation-link:#ccc;--color-tutorials-overview-navigation-link-active:#fff;--color-tutorials-overview-navigation-link-hover:#fff;--color-tutorial-hero-text:#fff;--color-tutorial-hero-background:#000;--color-navigator-item-hover:rgba(0,0,255,0.05);--color-card-background:var(--color-fill);--color-card-content-text:var(--color-figure-gray);--color-card-eyebrow:var(--color-figure-gray-secondary-alt);--color-card-shadow:rgba(0,0,0,0.04);--color-link-block-card-border:rgba(0,0,0,0.04);--color-standard-red:#8b0000;--color-standard-orange:#8b4000;--color-standard-yellow:#8f7200;--color-standard-blue:#002d75;--color-standard-green:#023b2d;--color-standard-purple:#512b55;--color-standard-gray:#2a2a2a}@media screen{body[data-color-scheme=dark]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}@media screen and (prefers-color-scheme:dark){body[data-color-scheme=auto]{--color-fill:#000;--color-fill-secondary:#161616;--color-fill-tertiary:#2a2a2a;--color-fill-blue:#06f;--color-fill-light-blue-secondary:#004ec4;--color-fill-gray:#575757;--color-fill-gray-secondary:#222;--color-fill-gray-tertiary:#424242;--color-fill-gray-quaternary:#424242;--color-fill-green-secondary:#030;--color-fill-orange-secondary:#472400;--color-fill-red-secondary:#300;--color-figure-blue:#09f;--color-figure-gray:#fff;--color-figure-gray-secondary:#ccc;--color-figure-gray-secondary-alt:#b0b0b0;--color-figure-gray-tertiary:#b0b0b0;--color-figure-green:#090;--color-figure-light-gray:#b0b0b0;--color-figure-orange:#f60;--color-figure-red:#f33;--color-tutorials-teal:#fff;--color-article-body-background:#111;--color-badge-default:var(--color-badge-dark-default);--color-button-background-active:#06f;--color-code-line-highlight:rgba(0,153,255,0.08);--color-dropdown-background:var(--color-dropdown-dark-background);--color-dropdown-border:var(--color-dropdown-dark-border);--color-dropdown-option-text:var(--color-dropdown-dark-option-text);--color-dropdown-text:var(--color-dropdown-dark-text);--color-nav-color:var(--color-nav-dark-color);--color-nav-current-link:var(--color-nav-dark-current-link);--color-nav-expanded:var(--color-nav-dark-expanded);--color-nav-hierarchy-collapse-background:var(--color-nav-dark-hierarchy-collapse-background);--color-nav-hierarchy-collapse-borders:var(--color-nav-dark-hierarchy-collapse-borders);--color-nav-hierarchy-item-borders:var(--color-nav-dark-hierarchy-item-borders);--color-nav-keyline:var(--color-nav-dark-keyline);--color-nav-link-color:var(--color-nav-dark-link-color);--color-nav-link-color-hover:var(--color-nav-dark-link-color-hover);--color-nav-outlines:var(--color-nav-dark-outlines);--color-nav-rule:var(--color-nav-dark-rule);--color-nav-solid-background:var(--color-nav-dark-solid-background);--color-nav-sticking-expanded-keyline:var(--color-nav-dark-sticking-expanded-keyline);--color-nav-stuck:var(--color-nav-dark-stuck);--color-nav-uiblur-expanded:var(--color-nav-dark-uiblur-expanded);--color-nav-uiblur-stuck:var(--color-nav-dark-uiblur-stuck);--color-runtime-preview-disabled-text:hsla(0,0%,80%,0.6);--color-syntax-attributes:#cc9768;--color-syntax-characters:#d9c97c;--color-syntax-comments:#7f8c98;--color-syntax-documentation-markup:#7f8c98;--color-syntax-documentation-markup-keywords:#a3b1bf;--color-syntax-keywords:#ff7ab2;--color-syntax-marks:#fff;--color-syntax-numbers:#d9c97c;--color-syntax-other-class-names:#dabaff;--color-syntax-other-constants:#a7ebdd;--color-syntax-other-declarations:#4eb0cc;--color-syntax-other-function-and-method-names:#b281eb;--color-syntax-other-instance-variables-and-globals:#b281eb;--color-syntax-other-preprocessor-macros:#ffa14f;--color-syntax-other-type-names:#dabaff;--color-syntax-param-internal-name:#bfbfbf;--color-syntax-plain-text:#fff;--color-syntax-preprocessor-statements:#ffa14f;--color-syntax-project-class-names:#acf2e4;--color-syntax-project-constants:#78c2b3;--color-syntax-project-function-and-method-names:#78c2b3;--color-syntax-project-instance-variables-and-globals:#78c2b3;--color-syntax-project-preprocessor-macros:#ffa14f;--color-syntax-project-type-names:#acf2e4;--color-syntax-strings:#ff8170;--color-syntax-type-declarations:#6bdfff;--color-syntax-urls:#69f;--color-tutorial-background:var(--color-fill-tertiary);--color-navigator-item-hover:rgba(0,102,255,0.5);--color-card-shadow:hsla(0,0%,100%,0.04);--color-link-block-card-border:hsla(0,0%,100%,0.25)}}#main{outline-style:none}:root{--app-height:100vh}[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:none}.fromkeyboard[data-v-7d594ed9] :focus:not(input):not(textarea):not(select){outline:4px solid var(--color-focus-color);outline-offset:1px}#app[data-v-7d594ed9]{display:flex;flex-flow:column;min-height:100%}#app[data-v-7d594ed9]>*{min-width:0}#app .router-content[data-v-7d594ed9]{flex:1}.container[data-v-1f05d9ec]{margin-left:auto;margin-right:auto;width:980px;outline-style:none;margin-top:92px;margin-bottom:140px}@media only screen and (max-width:1250px){.container[data-v-1f05d9ec]{width:692px}}@media only screen and (max-width:735px){.container[data-v-1f05d9ec]{width:87.5%}}@media only screen and (max-width:320px){.container[data-v-1f05d9ec]{width:215px}}.error-content[data-v-1f05d9ec]{box-sizing:border-box;width:502px;margin-left:auto;margin-right:auto;margin-bottom:54px}@media only screen and (max-width:1250px){.error-content[data-v-1f05d9ec]{width:420px;margin-bottom:45px}}@media only screen and (max-width:735px){.error-content[data-v-1f05d9ec]{max-width:330px;width:auto;margin-bottom:35px}}.title[data-v-1f05d9ec]{text-align:center;font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.title[data-v-1f05d9ec]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-1f05d9ec]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/topic.d8c126f3.css b/docs/PlaybackSDK.doccarchive/css/topic.d8c126f3.css new file mode 100644 index 0000000..5d8319b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/topic.d8c126f3.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.mobile-dropdown[data-v-154acfbd]{box-sizing:border-box}.nav--in-breakpoint-range .mobile-dropdown[data-v-154acfbd]{padding-left:.23529rem;padding-right:.23529rem}.mobile-dropdown ul[data-v-154acfbd]{list-style:none}.mobile-dropdown .option[data-v-154acfbd]{cursor:pointer;font-size:.70588rem;padding:.5rem 0;display:block;text-decoration:none;color:inherit}.mobile-dropdown .option[data-v-154acfbd]:focus{outline-offset:0}.mobile-dropdown .option.depth1[data-v-154acfbd]{padding-left:.47059rem}.active[data-v-154acfbd],.tutorial.router-link-active[data-v-154acfbd]{font-weight:600}.active[data-v-154acfbd]:focus,.tutorial.router-link-active[data-v-154acfbd]:focus{outline:none}.chapter-list[data-v-154acfbd]:not(:first-child){margin-top:1rem}.chapter-name[data-v-154acfbd],.tutorial[data-v-154acfbd]{padding:.5rem 0;font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.section-list[data-v-154acfbd],.tutorial-list[data-v-154acfbd]{padding:0 .58824rem}.chapter-list:last-child .tutorial-list[data-v-154acfbd]:last-child{padding-bottom:10em}.chapter-list[data-v-154acfbd]{display:inline-block}.form-element[data-v-998803d8]{position:relative}.form-dropdown[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;box-sizing:border-box;width:100%;height:3.3em;color:var(--color-dropdown-text);padding:1.11765rem 2.35294rem 0 .94118rem;text-align:left;border:1px solid var(--color-dropdown-border);border-radius:var(--border-radius,4px);background-clip:padding-box;margin-bottom:.82353rem;-webkit-appearance:none;-moz-appearance:none;appearance:none;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;min-height:32px}.form-dropdown[data-v-998803d8]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown.no-eyebrow[data-v-998803d8]{padding-top:0}.form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-text)}.form-dropdown[data-v-998803d8]::-ms-expand{opacity:0}.form-dropdown~.form-icon[data-v-998803d8]{position:absolute;display:block;pointer-events:none;fill:var(--color-figure-gray-tertiary);right:14px;width:13px;height:auto;top:50%;transform:translateY(-50%)}.is-open .form-dropdown~.form-icon[data-v-998803d8]{transform:translateY(-50%) scale(-1)}@media only screen and (max-width:735px){.form-dropdown~.form-icon[data-v-998803d8]{right:14px}}.form-dropdown~.form-label[data-v-998803d8]{font-size:.70588rem;line-height:1.75;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:absolute;top:.47059rem;left:17px;color:var(--color-figure-gray-secondary);pointer-events:none;padding:0;z-index:1}.form-dropdown[data-v-998803d8] option{color:var(--color-dropdown-text)}.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.form-dropdown-selectnone~.form-label[data-v-998803d8]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);top:19px;left:17px;color:var(--color-figure-gray-tertiary)}.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.form-dropdown-selectnone[data-v-998803d8]::-ms-value{display:none}.theme-dark .form-dropdown[data-v-998803d8]{color:var(--color-dropdown-dark-text);background-color:var(--color-dropdown-dark-background);border-color:var(--color-dropdown-dark-border)}.theme-dark .form-dropdown~.form-label[data-v-998803d8]{color:#ccc}.theme-dark .form-dropdown[data-v-998803d8]:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--color-dropdown-dark-text)}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]{color:transparent}.theme-dark .form-dropdown.form-dropdown-selectnone[data-v-998803d8]:-moz-focusring{text-shadow:none}.theme-dark .form-dropdown-selectnone~.form-label[data-v-998803d8]{color:#b0b0b0}.dropdown-small[data-v-12dd746a]{height:30px;display:flex;align-items:center;position:relative;background:var(--color-fill)}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]{line-height:1.5;font-size:12px;padding-top:0;padding-bottom:0;padding-left:20px;min-height:unset;height:30px;display:flex;align-items:center}.dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:none;border-color:var(--color-dropdown-border)}.fromkeyboard .dropdown-small .form-dropdown-toggle[data-v-12dd746a]:focus{box-shadow:0 0 0 2px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.form-dropdown-toggle[data-v-12dd746a]{margin:0}.is-open .form-dropdown-toggle[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;border-bottom:none;padding-bottom:1px}.fromkeyboard .is-open .form-dropdown-toggle[data-v-12dd746a]{box-shadow:1px -1px 0 1px var(--color-focus-color),-1px -1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color)}.form-dropdown-title[data-v-12dd746a]{margin:0;padding:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.dropdown-custom[data-v-12dd746a]{border-radius:var(--border-radius,4px)}.dropdown-custom.is-open[data-v-12dd746a]{border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0}.dropdown-custom[data-v-12dd746a] .form-dropdown-content{background:var(--color-fill);position:absolute;right:0;left:0;top:100%;border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px);border:1px solid var(--color-dropdown-border);border-top:none;display:none;overflow-y:auto}.dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{display:block}.fromkeyboard .dropdown-custom[data-v-12dd746a] .form-dropdown-content.is-open{box-shadow:1px 1px 0 1px var(--color-focus-color),-1px 1px 0 1px var(--color-focus-color);border-color:var(--color-focus-border-color);border-top-color:transparent}.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 116px - 3.05882rem)}.nav--is-sticking.nav .dropdown-custom[data-v-12dd746a] .form-dropdown-content{max-height:calc(100vh - 3.05882rem - 72px)}.dropdown-custom[data-v-12dd746a] .options{list-style:none;margin:0;padding:0 0 20px}.dropdown-custom[data-v-12dd746a] .option{cursor:pointer;padding:5px 20px;font-size:12px;line-height:20px;outline:none}.dropdown-custom[data-v-12dd746a] .option:hover{background-color:var(--color-fill-tertiary)}.dropdown-custom[data-v-12dd746a] .option.option-active{font-weight:600}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:hover{background-color:transparent}.fromkeyboard .dropdown-custom[data-v-12dd746a] .option:focus{background-color:var(--color-fill-tertiary);outline:none}.tutorial-dropdown[data-v-554d62b6]{grid-column:3}.section-tracker[data-v-554d62b6]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-figure-gray-secondary);margin-left:15px}.tutorial-dropdown[data-v-4bddb6e6]{grid-column:1/2}.tutorial-dropdown .options[data-v-4bddb6e6]{padding-top:1rem;padding-bottom:0}.tutorial-dropdown .option[data-v-4bddb6e6]{padding:5px 20px 5px 30px}.chapter-list[data-v-4bddb6e6]{padding-bottom:20px}.chapter-name[data-v-4bddb6e6]{margin:0 20px 5px 20px;line-height:normal;color:var(--color-figure-gray-secondary)}.chevron-icon[data-v-717bc942]{padding:0;color:var(--color-nav-outlines);grid-column:2;height:20px;width:20px;margin:0 4px}@media only screen and (min-width:768px){.nav[data-v-717bc942] .nav-content{display:grid;grid-template-columns:auto auto 3fr;align-items:center}.nav[data-v-717bc942] .nav-menu{padding:0;grid-column:3/5}.nav[data-v-717bc942] .nav-menu-item{margin:0}}.dropdown-container[data-v-717bc942]{height:3.05882rem;display:grid;grid-template-columns:minmax(230px,285px) auto minmax(230px,1fr);align-items:center}@media only screen and (max-width:1023px){.dropdown-container[data-v-717bc942]{grid-template-columns:minmax(173px,216px) auto minmax(173px,1fr)}}.separator[data-v-717bc942]{height:20px;border-right:1px solid;border-color:var(--color-nav-outlines);margin:0 20px;grid-column:2}.mobile-dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .dropdown-container[data-v-717bc942],.nav--in-breakpoint-range.nav .separator[data-v-717bc942]{display:none}.nav--in-breakpoint-range.nav .mobile-dropdown-container[data-v-717bc942]{display:block}.nav--in-breakpoint-range.nav[data-v-717bc942] .nav-title{grid-area:title}.nav--in-breakpoint-range.nav[data-v-717bc942] .pre-title{display:none}.nav[data-v-717bc942] .nav-title{grid-column:1;width:90%;padding-top:0}.primary-dropdown[data-v-717bc942],.secondary-dropdown[data-v-717bc942]{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .form-dropdown,.primary-dropdown[data-v-717bc942] .form-dropdown:focus,.secondary-dropdown[data-v-717bc942] .form-dropdown,.secondary-dropdown[data-v-717bc942] .form-dropdown:focus{border-color:var(--color-tutorial-navbar-dropdown-border)}.primary-dropdown[data-v-717bc942] .options,.secondary-dropdown[data-v-717bc942] .options{background:var(--color-tutorial-navbar-dropdown-background);border-color:var(--color-tutorial-navbar-dropdown-border)}[data-v-3cfe1c35] .code-listing+*,[data-v-3cfe1c35] aside+*,[data-v-3cfe1c35] h2+*,[data-v-3cfe1c35] h3+*,[data-v-3cfe1c35] ol+*,[data-v-3cfe1c35] p+*,[data-v-3cfe1c35] ul+*{margin-top:20px}[data-v-3cfe1c35] ol ol,[data-v-3cfe1c35] ol ul,[data-v-3cfe1c35] ul ol,[data-v-3cfe1c35] ul ul{margin-top:0}[data-v-3cfe1c35] h2{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h2{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-3cfe1c35] h2{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] h3{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-3cfe1c35] h3{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-3cfe1c35] .code-listing{background:var(--color-code-background);border-color:var(--colors-grid,var(--color-grid));border-style:solid;border-width:1px}[data-v-3cfe1c35] .code-listing pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace);padding:20px 0}.columns[data-v-30edf911]{display:grid;grid-template-rows:repeat(2,auto)}.columns.cols-2[data-v-30edf911]{gap:20px 8.33333%;grid-template-columns:repeat(2,1fr)}.columns.cols-3[data-v-30edf911]{gap:20px 4.16667%;grid-template-columns:repeat(3,1fr)}.asset[data-v-30edf911]{align-self:end;grid-row:1}.content[data-v-30edf911]{grid-row:2}@media only screen and (max-width:735px){.columns.cols-2[data-v-30edf911],.columns.cols-3[data-v-30edf911]{grid-template-columns:unset}.asset[data-v-30edf911],.content[data-v-30edf911]{grid-row:auto}}.content-and-media[data-v-3fa44f9e]{display:flex}.content-and-media.media-leading[data-v-3fa44f9e]{flex-direction:row-reverse}.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:row}@media only screen and (min-width:736px){.content-and-media[data-v-3fa44f9e]{align-items:center;justify-content:center}}.content[data-v-3fa44f9e]{width:62.5%}.asset[data-v-3fa44f9e]{width:29.16667%}.media-leading .asset[data-v-3fa44f9e]{margin-right:8.33333%}.media-trailing .asset[data-v-3fa44f9e]{margin-left:8.33333%}@media only screen and (max-width:735px){.content-and-media.media-leading[data-v-3fa44f9e],.content-and-media.media-trailing[data-v-3fa44f9e]{flex-direction:column}.asset[data-v-3fa44f9e],.content[data-v-3fa44f9e]{width:100%}.media-leading .asset[data-v-3fa44f9e],.media-trailing .asset[data-v-3fa44f9e]{margin:20px 0 0 0}}.group[id][data-v-1f2be54b]{margin-top:20px;padding-top:20px}[data-v-1f2be54b] img,[data-v-1f2be54b] video{display:block;margin:0 auto;max-width:100%}.layout+[data-v-4d5a806e]{margin-top:40px}@media only screen and (max-width:735px){.layout[data-v-4d5a806e]:first-child>:not(.group[id]){margin-top:40px}}.body[data-v-6499e2f2]{background:var(--colors-text-background,var(--color-article-body-background));margin-left:auto;margin-right:auto;width:980px;border-radius:10px;transform:translateY(-120px)}@media only screen and (max-width:1250px){.body[data-v-6499e2f2]{width:692px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{width:87.5%}}@media only screen and (max-width:320px){.body[data-v-6499e2f2]{width:215px}}@media only screen and (max-width:735px){.body[data-v-6499e2f2]{border-radius:0;transform:none}}.body[data-v-6499e2f2]~*{margin-top:-40px}.body-content[data-v-6499e2f2]{padding:40px 8.33333% 80px 8.33333%}@media only screen and (max-width:735px){.body-content[data-v-6499e2f2]{padding:0 0 40px 0}}.call-to-action[data-v-042a0474]{padding:65px 0;background:var(--color-call-to-action-background)}.theme-dark .call-to-action[data-v-042a0474]{--color-call-to-action-background:#424242}.row[data-v-042a0474]{margin-left:auto;margin-right:auto;width:980px;display:flex;align-items:center}@media only screen and (max-width:1250px){.row[data-v-042a0474]{width:692px}}@media only screen and (max-width:735px){.row[data-v-042a0474]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-042a0474]{width:215px}}[data-v-042a0474] img,[data-v-042a0474] video{max-height:560px}h2[data-v-042a0474]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){h2[data-v-042a0474]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){h2[data-v-042a0474]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.label[data-v-042a0474]{display:block;font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:735px){.label[data-v-042a0474]{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-042a0474]{margin-bottom:1.5rem}.right-column[data-v-042a0474]{margin-left:auto}@media only screen and (max-width:735px){.row[data-v-042a0474]{display:block}.col+.col[data-v-042a0474]{margin-top:40px}}@media only screen and (max-width:735px){.call-to-action[data-v-426a965c]{margin-top:0}}.headline[data-v-d46a1474]{margin-bottom:var(--spacing-stacked-margin-large)}.heading[data-v-d46a1474]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-header-text)}@media only screen and (max-width:1250px){.heading[data-v-d46a1474]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.heading[data-v-d46a1474]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.dark .heading[data-v-d46a1474]{color:#fff}.eyebrow[data-v-d46a1474]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:block;margin-bottom:var(--spacing-stacked-margin-small);color:var(--color-eyebrow)}@media only screen and (max-width:1250px){.eyebrow[data-v-d46a1474]{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.metadata[data-v-94ff76c0]{display:flex}.item[data-v-94ff76c0]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;flex-direction:column;justify-content:flex-end;align-items:center;border-right:1px solid #fff;padding:0 27.5px}@media only screen and (max-width:735px){.item[data-v-94ff76c0]{font-size:.64706rem;line-height:1.63636;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);padding:0 8px}}.item[data-v-94ff76c0]:first-of-type{padding-left:0}.item[data-v-94ff76c0]:last-of-type{border:none}@media only screen and (max-width:735px){.item[data-v-94ff76c0]:last-of-type{padding-right:0}}.content[data-v-94ff76c0]{color:#fff}.icon[data-v-94ff76c0]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){.icon[data-v-94ff76c0]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.icon[data-v-94ff76c0]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.small-icon[data-v-94ff76c0]{width:1em;height:1em;margin-left:.2rem}.small-icon.xcode-icon[data-v-94ff76c0]{width:.8em;height:.8em}.content-link[data-v-94ff76c0]{display:flex;align-items:center}a[data-v-94ff76c0]{color:var(--colors-link,var(--color-tutorials-overview-link))}.duration[data-v-94ff76c0]{display:flex;align-items:baseline;font-size:2.35294rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.8rem}@media only screen and (max-width:735px){.duration[data-v-94ff76c0]{font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}}.minutes[data-v-94ff76c0]{display:inline-block;font-size:1.64706rem;line-height:1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:1.3rem}@media only screen and (max-width:735px){.minutes[data-v-94ff76c0]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);line-height:.8rem}}.item-large-icon[data-v-94ff76c0]{height:2.3rem;max-width:100%}@media only screen and (max-width:735px){.item-large-icon[data-v-94ff76c0]{height:1.5rem;max-width:100%}}.bottom[data-v-94ff76c0]{margin-top:13px}@media only screen and (max-width:735px){.bottom[data-v-94ff76c0]{margin-top:8px}}.hero[data-v-55543c5a]{color:var(--color-tutorial-hero-text);position:relative}.bg[data-v-55543c5a],.hero[data-v-55543c5a]{background-color:var(--color-tutorial-hero-background)}.bg[data-v-55543c5a]{background-position:top;background-repeat:no-repeat;background-size:cover;content:"";height:100%;left:0;opacity:.3;position:absolute;top:0;width:100%}.row[data-v-55543c5a]{margin-left:auto;margin-right:auto;width:980px;padding:80px 0}@media only screen and (max-width:1250px){.row[data-v-55543c5a]{width:692px}}@media only screen and (max-width:735px){.row[data-v-55543c5a]{width:87.5%}}@media only screen and (max-width:320px){.row[data-v-55543c5a]{width:215px}}.col[data-v-55543c5a]{z-index:1}[data-v-55543c5a] .eyebrow{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-hero-eyebrow)}@media only screen and (max-width:1250px){[data-v-55543c5a] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.headline[data-v-55543c5a]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);margin-bottom:2rem}@media only screen and (max-width:1250px){.headline[data-v-55543c5a]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.intro[data-v-55543c5a]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.intro[data-v-55543c5a]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content+p[data-v-55543c5a]{margin-top:var(--spacing-stacked-margin-large)}@media only screen and (max-width:735px){.content+p[data-v-55543c5a]{margin-top:8px}}.call-to-action[data-v-55543c5a]{display:flex;align-items:center}.call-to-action .cta-icon[data-v-55543c5a]{margin-left:.4rem;width:1em;height:1em}.metadata[data-v-55543c5a]{margin-top:2rem}.video-asset[data-v-55543c5a]{display:grid;height:100vh;margin:0;place-items:center center}.video-asset[data-v-55543c5a] video{max-width:1280px;min-width:320px;width:100%}@media only screen and (max-width:735px){.headline[data-v-55543c5a]{margin-bottom:19px}}.tutorial-hero[data-v-35a9482f]{margin-bottom:80px}@media only screen and (max-width:735px){.tutorial-hero[data-v-35a9482f]{margin-bottom:0}}.title[data-v-28135d78]{font-size:.70588rem;line-height:1.33333;color:var(--colors-secondary-label,var(--color-secondary-label))}.title[data-v-19ed40e2],.title[data-v-28135d78]{font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.title[data-v-19ed40e2]{font-size:1.11765rem;line-height:1.21053;color:var(--colors-header-text,var(--color-header-text));margin:25px 0}.question-content[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.choices[data-v-19ed40e2]{display:flex;flex-direction:column;padding:0;list-style:none;margin:25px 0}.choice[data-v-19ed40e2]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);flex:1;border-radius:var(--border-radius,4px);margin:8px 0;padding:1.5rem 40px;cursor:pointer;background:var(--colors-text-background,var(--color-text-background));display:flex;flex-direction:column;justify-content:center;border-width:1px;border-style:solid;border-color:var(--colors-grid,var(--color-grid));position:relative}.choice[data-v-19ed40e2] img{max-height:23.52941rem}.choice[data-v-19ed40e2]:first-of-type{margin-top:0}.choice[data-v-19ed40e2] code{font-size:.76471rem;line-height:1.84615;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.controls[data-v-19ed40e2]{text-align:center;margin-bottom:40px}.controls .button-cta[data-v-19ed40e2]{margin:.5rem;margin-top:0;padding:.3rem 3rem;min-width:8rem}input[type=radio][data-v-19ed40e2]{position:absolute;width:100%;left:0;height:100%;opacity:0;z-index:-1}.active[data-v-19ed40e2]{border-color:var(--color-tutorial-quiz-border-active);box-shadow:0 0 0 4px var(--color-focus-color);outline:none}.active [data-v-19ed40e2]{color:var(--colors-text,var(--color-text))}.correct[data-v-19ed40e2]{background:var(--color-form-valid-background);border-color:var(--color-form-valid)}.correct .choice-icon[data-v-19ed40e2]{fill:var(--color-form-valid)}.incorrect[data-v-19ed40e2]{background:var(--color-form-error-background);border-color:var(--color-form-error)}.incorrect .choice-icon[data-v-19ed40e2]{fill:var(--color-form-error)}.correct[data-v-19ed40e2],.incorrect[data-v-19ed40e2]{position:relative}.correct .choice-icon[data-v-19ed40e2],.incorrect .choice-icon[data-v-19ed40e2]{position:absolute;top:11px;left:10px;font-size:20px;width:1.05em}.disabled[data-v-19ed40e2]{pointer-events:none}.answer[data-v-19ed40e2]{margin:.5rem 1.5rem .5rem 0;font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.answer[data-v-19ed40e2]:last-of-type{margin-bottom:0}[data-v-19ed40e2] .question>.code-listing{padding:unset;border-radius:0}[data-v-19ed40e2] pre{padding:0}[data-v-19ed40e2] img{display:block;margin-left:auto;margin-right:auto;max-width:100%}.title[data-v-65e3c02c]{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-header-text,var(--color-header-text))}@media only screen and (max-width:1250px){.title[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title p[data-v-65e3c02c]{color:var(--colors-text,var(--color-text))}.assessments[data-v-65e3c02c]{box-sizing:content-box;padding:0 1rem;background:var(--color-tutorial-assessments-background);margin-left:auto;margin-right:auto;width:980px;margin-bottom:80px}@media only screen and (max-width:1250px){.assessments[data-v-65e3c02c]{width:692px}}@media only screen and (max-width:735px){.assessments[data-v-65e3c02c]{width:87.5%}}@media only screen and (max-width:320px){.assessments[data-v-65e3c02c]{width:215px}}.banner[data-v-65e3c02c]{padding:40px 0;border-bottom:1px solid;margin-bottom:40px;border-color:var(--colors-grid,var(--color-grid));text-align:center}.success[data-v-65e3c02c]{text-align:center;padding-bottom:40px;font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-text))}@media only screen and (max-width:1250px){.success[data-v-65e3c02c]{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.success[data-v-65e3c02c]{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.assessments-wrapper[data-v-65e3c02c]{padding-top:80px}.assessments-wrapper[data-v-3c94366b]{padding-bottom:40px;padding-top:0}@media only screen and (max-width:735px){.assessments-wrapper[data-v-3c94366b]{padding-top:80px}}.article[data-v-7d4562ea]{background:var(--colors-article-background,var(--color-article-background))}@media only screen and (max-width:735px){.article[data-v-7d4562ea]{background:var(--colors-text-background,var(--color-article-body-background))}}.intro-container[data-v-7f9a8f65]{margin-bottom:80px}.intro[data-v-7f9a8f65]{display:flex;align-items:center}@media only screen and (max-width:735px){.intro[data-v-7f9a8f65]{padding-bottom:0;flex-direction:column}}.intro.ide .media[data-v-7f9a8f65] img{background-color:var(--colors-text-background,var(--color-text-background))}.col.left[data-v-7f9a8f65]{padding-right:40px}@media only screen and (max-width:1250px){.col.left[data-v-7f9a8f65]{padding-right:28px}}@media only screen and (max-width:735px){.col.left[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;padding-right:0}}@media only screen and (max-width:735px) and (max-width:1250px){.col.left[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.col.left[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.col.left[data-v-7f9a8f65]{width:215px}}.col.right[data-v-7f9a8f65]{padding-left:40px}@media only screen and (max-width:1250px){.col.right[data-v-7f9a8f65]{padding-left:28px}}@media only screen and (max-width:735px){.col.right[data-v-7f9a8f65]{padding-left:0}}.content[data-v-7f9a8f65]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.media[data-v-7f9a8f65] img{width:auto;max-height:560px;min-height:18.82353rem;-o-object-fit:scale-down;object-fit:scale-down}@media only screen and (max-width:735px){.media[data-v-7f9a8f65]{margin:0;margin-top:40px}.media[data-v-7f9a8f65] img,.media[data-v-7f9a8f65] video{max-height:80vh}}.media[data-v-7f9a8f65] .asset{padding:0 20px}.headline[data-v-7f9a8f65]{color:var(--colors-header-text,var(--color-header-text))}[data-v-7f9a8f65] .eyebrow{font-size:1.23529rem;line-height:1.19048;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){[data-v-7f9a8f65] .eyebrow{font-size:1.11765rem;line-height:1.21053;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}[data-v-7f9a8f65] .eyebrow a{color:inherit}[data-v-7f9a8f65] .heading{font-size:1.88235rem;line-height:1.25;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:1250px){[data-v-7f9a8f65] .heading{font-size:1.64706rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){[data-v-7f9a8f65] .heading{font-size:1.41176rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.expanded-intro[data-v-7f9a8f65]{margin-left:auto;margin-right:auto;width:980px;margin-top:40px}@media only screen and (max-width:1250px){.expanded-intro[data-v-7f9a8f65]{width:692px}}@media only screen and (max-width:735px){.expanded-intro[data-v-7f9a8f65]{width:87.5%}}@media only screen and (max-width:320px){.expanded-intro[data-v-7f9a8f65]{width:215px}}[data-v-7f9a8f65] .cols-2{gap:20px 16.66667%}[data-v-7f9a8f65] .cols-3 .column{gap:20px 12.5%}.code-preview[data-v-4f53426a]{position:sticky;overflow-y:auto;-webkit-overflow-scrolling:touch;background-color:var(--background,var(--color-step-background));height:calc(100vh - 3.05882rem)}.code-preview.ide[data-v-4f53426a]{height:100vh}.code-preview[data-v-4f53426a] .code-listing{color:var(--text,var(--color-code-plain))}.code-preview[data-v-4f53426a] .code-listing .code-line-container{padding-right:14px}.code-preview[data-v-4f53426a] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.header[data-v-4f53426a]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);position:relative;display:flex;justify-content:space-between;align-items:center;width:-webkit-fill-available;width:-moz-available;width:stretch;cursor:pointer;font-weight:600;padding:8px 12px;border-radius:var(--border-radius,4px) var(--border-radius,4px) 0 0;z-index:1;background:var(--color-runtime-preview-background);color:var(--colors-runtime-preview-text,var(--color-runtime-preview-text))}.header[data-v-4f53426a]:focus{outline-style:none}#app.fromkeyboard .header[data-v-4f53426a]:focus{box-shadow:0 0 0 4px var(--color-focus-color);outline:none;border-color:var(--color-focus-border-color)}.runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:rgba(0,0,0,0.4);position:absolute;top:0;right:0;background:var(--color-runtime-preview-background);border-radius:var(--border-radius,4px);margin:1rem;margin-left:0;transition:width .2s ease-in;box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow)}@media screen{[data-color-scheme=dark] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@media screen and (prefers-color-scheme:dark){[data-color-scheme=auto] .runtime-preview[data-v-4f53426a]{--color-runtime-preview-shadow:hsla(0,0%,100%,0.4)}}@supports not ((width:-webkit-fill-available) or (width:-moz-available) or (width:stretch)){.runtime-preview[data-v-4f53426a]{display:flex;flex-direction:column}}.runtime-preview .runtimve-preview__container[data-v-4f53426a]{border-radius:var(--border-radius,4px);overflow:hidden}.runtime-preview-ide[data-v-4f53426a]{top:0}.runtime-preview-ide .runtime-preview-asset[data-v-4f53426a] img{background-color:var(--color-runtime-preview-background)}.runtime-preview.collapsed[data-v-4f53426a]{box-shadow:0 0 3px 0 var(--color-runtime-preview-shadow);width:102px}.runtime-preview.collapsed .header[data-v-4f53426a]{border-radius:var(--border-radius,4px)}.runtime-preview.disabled[data-v-4f53426a]{box-shadow:0 0 3px 0 transparent}.runtime-preview.disabled .header[data-v-4f53426a]{color:var(--color-runtime-preview-disabled-text);cursor:auto}.runtime-preview-asset[data-v-4f53426a]{border-radius:0 0 var(--border-radius,4px) var(--border-radius,4px)}.runtime-preview-asset[data-v-4f53426a] img{border-bottom-left-radius:var(--border-radius,4px);border-bottom-right-radius:var(--border-radius,4px)}.preview-icon[data-v-4f53426a]{height:.8em;width:.8em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.preview-show[data-v-4f53426a]{transform:scale(-1)}[data-v-5ad4e037] pre{padding:10px 0}.toggle-preview[data-v-78763c14]{color:var(--color-runtime-preview-disabled-text);display:flex;align-items:center}a[data-v-78763c14]{color:var(--url,var(--color-link))}.toggle-text[data-v-78763c14]{display:flex;align-items:center}svg.toggle-icon[data-v-78763c14]{width:1em;height:1em;margin-left:.5em}.mobile-code-preview[data-v-1aed4baa]{background-color:var(--background,var(--color-step-background));padding:14px 0}@media only screen and (max-width:735px){.mobile-code-preview[data-v-1aed4baa]{display:flex;flex-direction:column}}.runtime-preview-modal-content[data-v-1aed4baa]{padding:45px 60px 0 60px;min-width:200px}.runtime-preview-modal-content[data-v-1aed4baa] img:not(.file-icon){border-radius:var(--border-radius,4px);box-shadow:0 0 3px rgba(0,0,0,.4);max-height:80vh;width:auto;display:block;margin-bottom:1rem}.runtime-preview-modal-content .runtime-preview-label[data-v-1aed4baa]{font-size:.70588rem;line-height:1.33333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-runtime-preview-text);display:block;text-align:center;padding:.5em}[data-v-1aed4baa] .code-listing{color:var(--text,var(--color-code-plain))}[data-v-1aed4baa] .full-code-listing{padding-top:60px;min-height:calc(100vh - 60px)}[data-v-1aed4baa] pre{font-size:.70588rem;line-height:1.83333;font-weight:400;font-family:var(--typography-html-font-mono,Menlo,monospace)}.preview-toggle-container[data-v-1aed4baa]{align-self:flex-end;margin-right:20px}.step-container[data-v-eb45ec92]{margin:0}.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:100px}@media only screen and (max-width:735px){.step-container[data-v-eb45ec92]:not(:last-child){margin-bottom:80px}}.step[data-v-eb45ec92]{position:relative;border-radius:var(--tutorial-step-border-radius,var(--border-radius,4px));padding:1rem 2rem;background-color:var(--color-step-background);overflow:hidden;filter:blur(0)}.step[data-v-eb45ec92]:before{content:"";position:absolute;top:0;left:0;border:1px solid var(--color-step-focused);background-color:var(--color-step-focused);height:calc(100% - 2px);width:4px;opacity:0;transition:opacity .15s ease-in}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.step.focused[data-v-eb45ec92]:before,.step[data-v-eb45ec92]:focus:before{opacity:1}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{padding-left:2rem}.step[data-v-eb45ec92]:before{opacity:1}}.step-label[data-v-eb45ec92]{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--colors-text,var(--color-step-text));margin-bottom:var(--spacing-stacked-margin-small)}.caption[data-v-eb45ec92]{border-top:1px solid;border-color:var(--color-step-caption);padding:1rem 0 0 0;margin-top:1rem}.media-container[data-v-eb45ec92]{display:none}@media only screen and (max-width:735px){.step[data-v-eb45ec92]{margin:0 .58824rem 1.17647rem .58824rem}.step.focused[data-v-eb45ec92],.step[data-v-eb45ec92]:focus{outline:none}.media-container[data-v-eb45ec92]{display:block;position:relative}.media-container[data-v-eb45ec92] img,.media-container[data-v-eb45ec92] video{max-height:80vh}[data-v-eb45ec92] .asset{padding:0 20px}}.steps[data-v-2786be2a]{position:relative;font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;color:var(--colors-text,var(--color-text))}@media only screen and (max-width:735px){.steps[data-v-2786be2a]{padding-top:80px}.steps[data-v-2786be2a]:before{position:absolute;top:0;border-top:1px solid var(--color-fill-gray-tertiary);content:"";width:calc(100% - 2.35294rem);margin:0 1.17647rem}}.steps[data-v-2786be2a] aside{background:unset;border:unset;box-shadow:unset;-moz-column-break-inside:unset;break-inside:unset;padding:unset}.steps[data-v-2786be2a] aside .label{font-size:.70588rem;line-height:1.33333;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content-container[data-v-2786be2a]{flex:none;margin-right:4.16667%;width:37.5%;margin-top:140px;margin-bottom:94vh}@media only screen and (max-width:735px){.content-container[data-v-2786be2a]{margin-top:0;margin-bottom:0;height:100%;margin-left:0;margin-right:0;position:relative;width:100%}}.asset-container[data-v-2786be2a]{flex:none;height:calc(100vh - 3.05882rem);background-color:var(--background,var(--color-step-background));max-width:921px;width:calc(50vw + 8.33333%);position:sticky;top:3.05882rem;transition:margin .1s ease-in-out}@media only screen and (max-width:767px){.asset-container[data-v-2786be2a]{top:2.82353rem;height:calc(100vh - 2.82353rem)}}.asset-container[data-v-2786be2a]:not(.for-step-code){overflow-y:auto;-webkit-overflow-scrolling:touch}.asset-container.ide[data-v-2786be2a]{height:100vh;top:0}@media only screen and (min-width:736px){.asset-container[data-v-2786be2a]{display:grid}.asset-container>[data-v-2786be2a]{grid-row:1;grid-column:1;height:calc(100vh - 3.05882rem)}.asset-container.ide>[data-v-2786be2a]{height:100vh}}.asset-container .step-asset[data-v-2786be2a]{box-sizing:border-box;padding:0;padding-left:40px;min-height:320px;height:100%}.asset-container .step-asset[data-v-2786be2a],.asset-container .step-asset[data-v-2786be2a] picture{height:100%;display:flex;align-items:center}.asset-container .step-asset[data-v-2786be2a] .video-replay-container{height:100%;display:flex;flex-direction:column;justify-content:center}.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{width:auto;max-height:calc(100vh - 3.05882rem - 80px);max-width:531.6634px;margin:0}@media only screen and (max-width:1250px){.asset-container .step-asset[data-v-2786be2a] img,.asset-container .step-asset[data-v-2786be2a] video{max-width:363.66436px}}.asset-container .step-asset[data-v-2786be2a] .video-replay-container,.asset-container .step-asset[data-v-2786be2a] img{min-height:320px}.asset-container .step-asset[data-v-2786be2a] .video-replay-container video{min-height:280px}@media only screen and (max-width:735px){.asset-container[data-v-2786be2a]{display:none}}.asset-wrapper[data-v-2786be2a]{width:63.2%;align-self:center;transition:transform .25s ease-out;will-change:transform}.asset-wrapper.ide .step-asset[data-v-2786be2a] img{background-color:var(--background,var(--color-step-background))}[data-v-2786be2a] .runtime-preview-asset{display:grid}[data-v-2786be2a] .runtime-preview-asset>*{grid-row:1;grid-column:1}.interstitial[data-v-2786be2a]{padding:0 2rem}.interstitial[data-v-2786be2a]:not(:first-child){margin-top:5.88235rem}.interstitial[data-v-2786be2a]:not(:last-child){margin-bottom:30px}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]{margin-left:auto;margin-right:auto;width:980px;padding:0}}@media only screen and (max-width:735px) and (max-width:1250px){.interstitial[data-v-2786be2a]{width:692px}}@media only screen and (max-width:735px) and (max-width:735px){.interstitial[data-v-2786be2a]{width:87.5%}}@media only screen and (max-width:735px) and (max-width:320px){.interstitial[data-v-2786be2a]{width:215px}}@media only screen and (max-width:735px){.interstitial[data-v-2786be2a]:not(:first-child){margin-top:0}}.fade-enter-active[data-v-2786be2a],.fade-leave-active[data-v-2786be2a]{transition:opacity .3s ease-in-out}.fade-enter[data-v-2786be2a],.fade-leave-to[data-v-2786be2a]{opacity:0}.section[data-v-6b3a0b3a]{padding-top:80px}.sections[data-v-79a75e9e]{margin-left:auto;margin-right:auto;width:980px}@media only screen and (max-width:1250px){.sections[data-v-79a75e9e]{width:692px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{width:87.5%}}@media only screen and (max-width:320px){.sections[data-v-79a75e9e]{width:215px}}@media only screen and (max-width:735px){.sections[data-v-79a75e9e]{margin:0;width:100%}}.tutorial[data-v-611d0574]{background-color:var(--colors-text-background,var(--color-tutorial-background))} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/css/tutorials-overview.c249c765.css b/docs/PlaybackSDK.doccarchive/css/tutorials-overview.c249c765.css new file mode 100644 index 0000000..01d1d25 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/css/tutorials-overview.c249c765.css @@ -0,0 +1,9 @@ +/*! + * This source file is part of the Swift.org open source project + * + * Copyright (c) 2021 Apple Inc. and the Swift project authors + * Licensed under Apache License v2.0 with Runtime Library Exception + * + * See https://swift.org/LICENSE.txt for license information + * See https://swift.org/CONTRIBUTORS.txt for Swift project authors + */.tutorials-navigation-link[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link);transition:color .3s linear}.tutorials-navigation-link[data-v-e9f9b59c]:hover{text-decoration:none;transition:none;color:var(--color-tutorials-overview-navigation-link-hover)}.tutorials-navigation-link.active[data-v-e9f9b59c]{color:var(--color-tutorials-overview-navigation-link-active)}.tutorials-navigation-list[data-v-6f2800d1]{list-style-type:none;margin:0}.tutorials-navigation-list li+li[data-v-6f2800d1]:not(.volume--named){margin-top:24px}.tutorials-navigation-list .volume--named+.volume--named[data-v-6f2800d1]{margin-top:12px}.expand-enter-active,.expand-leave-active{transition:height .3s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.toggle[data-v-489416f8]{color:#f0f0f0;line-height:21px;display:flex;align-items:center;width:100%;font-weight:600;padding:6px 6px 6px 0;border-bottom:1px solid #2a2a2a;text-decoration:none;box-sizing:border-box}@media only screen and (max-width:767px){.toggle[data-v-489416f8]{padding-right:6px;border-bottom-color:hsla(0,0%,100%,.1)}}.toggle .text[data-v-489416f8]{word-break:break-word}.toggle[data-v-489416f8]:hover{text-decoration:none}.toggle .toggle-icon[data-v-489416f8]{display:inline-block;transition:transform .2s ease-in;height:.4em;width:.4em;margin-left:auto;margin-right:.2em}.collapsed .toggle .toggle-icon[data-v-489416f8]{transform:rotate(45deg)}.collapsed .toggle[data-v-489416f8],.collapsed .toggle[data-v-489416f8]:hover{color:#b0b0b0}.tutorials-navigation-menu-content[data-v-489416f8]{opacity:1;transition:height .2s ease-in,opacity .2s ease-in}.collapsed .tutorials-navigation-menu-content[data-v-489416f8]{height:0;opacity:0}.tutorials-navigation-menu-content .tutorials-navigation-list[data-v-489416f8]{padding:24px 0 12px 0}.tutorials-navigation[data-v-79093ed6]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.nav-title-content[data-v-854b4dd6]{max-width:100%}.title[data-v-854b4dd6]{color:var(--color-nav-root-title,currentColor);text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;vertical-align:top;max-width:296px}@media only screen and (max-width:1023px){.title[data-v-854b4dd6]{max-width:205px}}@media only screen and (max-width:767px){.title[data-v-854b4dd6]{flex-basis:fill;display:initial;vertical-align:initial;max-width:none}}.subhead[data-v-854b4dd6]{color:var(--color-nav-root-subhead)}.theme-dark .subhead[data-v-854b4dd6]{color:var(--color-nav-dark-root-subhead)}.nav[data-v-b806ee20] .nav-menu{padding-top:0}.nav[data-v-b806ee20] .nav-menu .nav-menu-items{margin-left:auto}@media only screen and (min-width:768px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items .in-page-navigation{display:none}}@media only screen and (min-width:320px) and (max-width:735px){.nav[data-v-b806ee20] .nav-menu .nav-menu-items{padding:18px 0 40px}}.hero[data-v-383dab71]{margin-left:auto;margin-right:auto;width:980px;padding-bottom:4.70588rem;padding-top:4.70588rem}@media only screen and (max-width:1250px){.hero[data-v-383dab71]{width:692px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{width:87.5%}}@media only screen and (max-width:320px){.hero[data-v-383dab71]{width:215px}}.copy-container[data-v-383dab71]{margin:0 auto;text-align:center;width:720px}.title[data-v-383dab71]{font-size:2.82353rem;line-height:1.08333;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:1250px){.title[data-v-383dab71]{font-size:2.35294rem;line-height:1.1;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-383dab71]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-383dab71]{font-size:1.23529rem;line-height:1.38095;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content)}@media only screen and (max-width:735px){.content[data-v-383dab71]{font-size:1.11765rem;line-height:1.42105;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.meta[data-v-383dab71]{color:var(--color-tutorials-overview-content-alt);align-items:center;display:flex;justify-content:center}.meta-content[data-v-383dab71]{font-size:.82353rem;line-height:1.42857;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.meta .timer-icon[data-v-383dab71]{margin-right:.35294rem;height:16px;width:16px;fill:var(--color-tutorials-overview-icon)}@media only screen and (max-width:735px){.meta .timer-icon[data-v-383dab71]{margin-right:.29412rem;height:.82353rem;width:.82353rem}}.meta .time[data-v-383dab71]{font-size:1.11765rem;line-height:1.21053;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}@media only screen and (max-width:735px){.meta .time[data-v-383dab71]{font-size:1rem;line-height:1.11765;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.title+.content[data-v-383dab71]{margin-top:1.47059rem}.content+.meta[data-v-383dab71]{margin-top:1.17647rem}.button-cta[data-v-383dab71]{margin-top:1.76471rem}*+.asset[data-v-383dab71]{margin-top:4.11765rem}@media only screen and (max-width:1250px){.copy-container[data-v-383dab71]{width:636px}}@media only screen and (max-width:735px){.hero[data-v-383dab71]{padding-bottom:1.76471rem;padding-top:2.35294rem}.copy-container[data-v-383dab71]{width:100%}.title+.content[data-v-383dab71]{margin-top:.88235rem}.button-cta[data-v-383dab71]{margin-top:1.41176rem}*+.asset[data-v-383dab71]{margin-top:2.23529rem}}.image[data-v-569db166]{margin-bottom:10px}.name[data-v-569db166]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0);word-break:break-word}@media only screen and (max-width:1250px){.name[data-v-569db166]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.name[data-v-569db166]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-569db166]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);margin-top:10px}.volume-name[data-v-569db166]{padding:50px 60px;text-align:center;background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0}@media only screen and (max-width:735px){.volume-name[data-v-569db166]{padding:40px 20px}}.document-icon[data-v-3a80772b]{margin-left:-3px}.tile[data-v-96abac22]{background:var(--color-tutorials-overview-fill-secondary,#161616);padding:40px 30px;color:var(--color-tutorials-overview-content-alt)}.content[data-v-96abac22] a,a[data-v-96abac22]{color:var(--colors-link,var(--color-tutorials-overview-link))}.icon[data-v-96abac22]{display:block;height:1.47059rem;line-height:1.47059rem;margin-bottom:.58824rem;width:1.47059rem}.icon[data-v-96abac22] svg.svg-icon{width:100%;max-height:100%;fill:var(--color-tutorials-overview-icon)}.icon[data-v-96abac22] svg.svg-icon .svg-icon-stroke{stroke:var(--color-tutorials-overview-content-alt)}.title[data-v-96abac22]{font-size:1.23529rem;line-height:1.19048;font-weight:600;margin-bottom:.8em}.content[data-v-96abac22],.link[data-v-96abac22],.title[data-v-96abac22]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-96abac22],.link[data-v-96abac22]{font-size:.82353rem;line-height:1.42857;font-weight:400}.content[data-v-96abac22]{color:var(--color-tutorials-overview-content-alt)}.link[data-v-96abac22]{display:block;margin-top:1.17647rem}.link .link-icon[data-v-96abac22]{margin-left:.2em;width:.6em;height:.6em}[data-v-96abac22] .content ul{list-style-type:none;margin-left:0;font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}[data-v-96abac22] .content ul li:before{content:"\200B";position:absolute}[data-v-96abac22] .content li+li{margin-top:8px}@media only screen and (max-width:735px){.tile[data-v-96abac22]{padding:1.76471rem 1.17647rem}}.tile-group[data-v-015f9f13]{display:grid;grid-column-gap:2px;grid-row-gap:2px}.tile-group.count-1[data-v-015f9f13]{grid-template-columns:1fr;text-align:center}.tile-group.count-1[data-v-015f9f13] .icon{margin-left:auto;margin-right:auto}.tile-group.count-2[data-v-015f9f13]{grid-template-columns:repeat(2,1fr)}.tile-group.count-3[data-v-015f9f13]{grid-template-columns:repeat(3,1fr)}.tile-group.count-4[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5[data-v-015f9f13]{grid-template-columns:repeat(6,1fr);grid-template-rows:repeat(2,auto)}.tile-group.count-5 .tile[data-v-015f9f13]{grid-column-end:span 2}.tile-group.count-5 .tile[data-v-015f9f13]:nth-of-type(-n+2){grid-column-end:span 3}.tile-group.count-6[data-v-015f9f13]{grid-template-columns:repeat(2,1fr);grid-template-rows:repeat(3,auto)}@media only screen and (min-width:768px) and (max-width:1250px){.tile-group.tile-group[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}@media only screen and (max-width:735px){.tile-group.count-1[data-v-015f9f13],.tile-group.count-2[data-v-015f9f13],.tile-group.count-3[data-v-015f9f13],.tile-group.count-4[data-v-015f9f13],.tile-group.count-5[data-v-015f9f13],.tile-group.count-6[data-v-015f9f13]{grid-template-columns:1fr;grid-template-rows:auto}}.title[data-v-7f8022c1]{font-size:1.88235rem;line-height:1.125;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#f0f0f0}@media only screen and (max-width:1250px){.title[data-v-7f8022c1]{font-size:1.64706rem;line-height:1.14286;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}@media only screen and (max-width:735px){.title[data-v-7f8022c1]{font-size:1.41176rem;line-height:1.16667;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.content[data-v-7f8022c1]{font-size:1rem;line-height:1.23529;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:#b0b0b0;margin-top:10px}.topic-list[data-v-45ec37c5]{list-style-type:none;margin:50px 0 0 0;position:relative}.topic-list li[data-v-45ec37c5]:before{content:"\200B";position:absolute}.topic-list[data-v-45ec37c5]:before{content:"";border-left:1px solid var(--color-fill-quaternary);display:block;height:calc(100% - .88235rem);left:.88235rem;position:absolute;top:50%;transform:translateY(-50%);width:0}.topic[data-v-45ec37c5]{font-size:1rem;line-height:1.47059;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);display:flex;align-items:flex-start}@media only screen and (max-width:735px){.topic[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}}.topic+.topic[data-v-45ec37c5]{margin-top:.58824rem}.topic .topic-icon[data-v-45ec37c5]{background-color:var(--color-fill-quaternary);border-radius:50%;flex-shrink:0;height:1.76471rem;width:1.76471rem;margin-right:1.17647rem;position:relative;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:.47059rem;box-sizing:border-box;display:flex;justify-content:center;align-items:center}.topic .topic-icon svg[data-v-45ec37c5]{fill:var(--color-tutorials-overview-icon);max-width:100%;max-height:100%;width:100%}.container[data-v-45ec37c5]{align-items:baseline;display:flex;justify-content:space-between;width:100%;padding-top:.11765rem}.container[data-v-45ec37c5]:hover{text-decoration:none}.container:hover .link[data-v-45ec37c5]{text-decoration:underline}.timer-icon[data-v-45ec37c5]{margin-right:.29412rem;height:.70588rem;width:.70588rem;fill:var(--color-tutorials-overview-icon)}.time[data-v-45ec37c5]{font-size:.82353rem;line-height:1.28571;font-weight:400;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-content-alt);align-items:center;display:inline-flex}.link[data-v-45ec37c5]{padding-right:.58824rem;color:var(--colors-link,var(--color-tutorials-overview-link))}@media only screen and (min-width:768px) and (max-width:1250px){.topic-list[data-v-45ec37c5]{margin-top:2.35294rem}}@media only screen and (max-width:735px){.topic-list[data-v-45ec37c5]{margin-top:1.76471rem}.topic[data-v-45ec37c5]{height:auto;align-items:flex-start}.topic.no-time-estimate[data-v-45ec37c5]{align-items:center}.topic.no-time-estimate .topic-icon[data-v-45ec37c5]{align-self:flex-start;top:0}.topic+.topic[data-v-45ec37c5]{margin-top:1.17647rem}.topic .topic-icon[data-v-45ec37c5]{top:.29412rem;margin-right:.76471rem}.container[data-v-45ec37c5]{flex-wrap:wrap;padding-top:0}.link[data-v-45ec37c5],.time[data-v-45ec37c5]{flex-basis:100%}.time[data-v-45ec37c5]{margin-top:.29412rem}}.chapter[data-v-7468bc5e]:focus{outline:none!important}.info[data-v-7468bc5e]{align-items:center;display:flex;flex-wrap:wrap;justify-content:space-between}.name[data-v-7468bc5e]{font-size:1.23529rem;line-height:1.19048;font-weight:600;font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif);color:var(--color-tutorials-overview-header-text,#f0f0f0)}.name-text[data-v-7468bc5e]{word-break:break-word}.eyebrow[data-v-7468bc5e]{font-size:1rem;line-height:1.23529;font-weight:400;color:var(--color-tutorials-overview-eyebrow);display:block;font-weight:600;margin-bottom:5px}.content[data-v-7468bc5e],.eyebrow[data-v-7468bc5e]{font-family:var(--typography-html-font,"Helvetica Neue","Helvetica","Arial",sans-serif)}.content[data-v-7468bc5e]{font-size:.82353rem;line-height:1.42857;font-weight:400;color:var(--color-tutorials-overview-content-alt)}.asset[data-v-7468bc5e]{flex:0 0 190px}.intro[data-v-7468bc5e]{flex:0 1 360px}@media only screen and (min-width:768px) and (max-width:1250px){.asset[data-v-7468bc5e]{flex:0 0 130px}.intro[data-v-7468bc5e]{flex:0 1 260px}}@media only screen and (max-width:767px){.intro[data-v-7468bc5e]{flex:0 1 340px}}@media only screen and (max-width:735px){.info[data-v-7468bc5e]{display:block;text-align:center}.asset[data-v-7468bc5e]{margin:0 45px}.eyebrow[data-v-7468bc5e]{margin-bottom:7px}.intro[data-v-7468bc5e]{margin-top:40px}}.tile[data-v-540dbf10]{background:var(--color-tutorials-overview-fill-secondary,#161616);margin:2px 0;padding:50px 60px}.asset[data-v-540dbf10]{margin-bottom:10px}@media only screen and (min-width:768px) and (max-width:1250px){.tile[data-v-540dbf10]{padding:40px 30px}}@media only screen and (max-width:735px){.volume[data-v-540dbf10]{border-radius:0}.tile[data-v-540dbf10]{padding:40px 20px}}.learning-path[data-v-69a72bbc]{background:var(--color-tutorials-overview-fill,#000);padding:4.70588rem 0}.main-container[data-v-69a72bbc]{margin-left:auto;margin-right:auto;width:980px;align-items:stretch;display:flex;justify-content:space-between}@media only screen and (max-width:1250px){.main-container[data-v-69a72bbc]{width:692px}}@media only screen and (max-width:735px){.main-container[data-v-69a72bbc]{width:87.5%}}@media only screen and (max-width:320px){.main-container[data-v-69a72bbc]{width:215px}}.ide .main-container[data-v-69a72bbc]{justify-content:center}.secondary-content-container[data-v-69a72bbc]{flex:0 0 200px;width:200px}.tutorials-navigation[data-v-69a72bbc]{position:sticky;top:7.76471rem}.primary-content-container[data-v-69a72bbc]{flex:0 1 720px;max-width:100%}.content-sections-container .content-section[data-v-69a72bbc]{border-radius:12px;overflow:hidden}.content-sections-container .content-section+.content-section[data-v-69a72bbc]{margin-top:1.17647rem}@media only screen and (min-width:768px) and (max-width:1250px){.learning-path[data-v-69a72bbc]{padding:2.35294rem 0}.primary-content-container[data-v-69a72bbc]{flex-basis:auto;margin-left:1.29412rem}.secondary-content-container[data-v-69a72bbc]{flex:0 0 180px;width:180px}}@media only screen and (max-width:767px){.secondary-content-container[data-v-69a72bbc]{display:none}}@media only screen and (max-width:735px){.content-sections-container .content-section[data-v-69a72bbc]{border-radius:0}.content-sections-container .content-section.volume[data-v-69a72bbc]{margin-top:1.17647rem}.learning-path[data-v-69a72bbc]{padding:0}.main-container[data-v-69a72bbc]{width:100%}}.tutorials-overview[data-v-29ed9b58]{height:100%}.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-3.05882rem;padding-top:3.05882rem;background:var(--color-tutorials-overview-fill-secondary,var(--color-tutorials-overview-background))}@media only screen and (max-width:735px){.tutorials-overview .radial-gradient[data-v-29ed9b58]{margin-top:-2.82353rem;padding-top:2.82353rem}}@-moz-document url-prefix(){.tutorials-overview .radial-gradient{background:#111!important}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk.json new file mode 100644 index 0000000..1d8e642 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/playbacksdk"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"title":"Articles","generated":true,"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/Documentation"]},{"title":"Classes","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]},{"title":"Protocols","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]},{"title":"Structures","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView"]},{"title":"Enumerations","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]}],"metadata":{"modules":[{"name":"PlaybackSDK"}],"role":"collection","title":"PlaybackSDK","roleHeading":"Framework","externalID":"PlaybackSDK","symbolKind":"module"},"hierarchy":{"paths":[[]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/Documentation":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/Documentation","role":"collectionGroup","title":"TESWT","kind":"article","url":"\/documentation\/playbacksdk\/documentation","type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin.json new file mode 100644 index 0000000..db4696f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin.json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"relationshipsSections":[{"type":"conformsTo","kind":"relationships","title":"Conforms To","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"BitmovinPlayerPlugin"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin"]}],"metadata":{"modules":[{"name":"PlaybackSDK"}],"symbolKind":"class","roleHeading":"Class","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC","navigatorTitle":[{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"title":"BitmovinPlayerPlugin","role":"symbol","fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"kind":"identifier","text":"BitmovinPlayerPlugin"}]},"topicSections":[{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/init()"],"title":"Initializers"},{"title":"Instance Properties","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/name","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/version"]},{"title":"Instance Methods","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/pause()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/play()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/playerView(hlsURLString:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/removePlayer()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/setup()"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/play()":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"()"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/play()","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/play()","title":"play()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/setup()":{"title":"setup()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/setup()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setup"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/setup()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/version":{"title":"version","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/version","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"version","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/version","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/name":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/name","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/name","kind":"symbol","title":"name"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/playerView(hlsURLString:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"playerView","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hlsURLString"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView","kind":"typeIdentifier"}],"kind":"symbol","title":"playerView(hlsURLString:)","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/playerview(hlsurlstring:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/playerView(hlsURLString:)","abstract":[{"type":"text","text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/pause()":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/pause()","abstract":[],"role":"symbol","title":"pause()","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/pause()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/init()":{"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/init()","abstract":[],"fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"title":"init()","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/init()","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/removePlayer()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removePlayer"},{"text":"()","kind":"text"}],"kind":"symbol","title":"removePlayer()","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/removeplayer()","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/removePlayer()","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/init().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/init().json new file mode 100644 index 0000000..55be309 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/init().json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"role":"symbol","roleHeading":"Initializer","modules":[{"name":"PlaybackSDK"}],"title":"init()","symbolKind":"init","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginCACycfc"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/init()"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/init()":{"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/init()","abstract":[],"fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"title":"init()","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/init()","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/name.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/name.json new file mode 100644 index 0000000..e257423 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/name.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoPlayerPlugin.name"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC4nameSSvp","symbolKind":"property","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"roleHeading":"Instance Property","title":"name"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/name"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/name":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/name","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/name","kind":"symbol","title":"name"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/pause().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/pause().json new file mode 100644 index 0000000..9c4be11 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/pause().json @@ -0,0 +1 @@ +{"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"pause","kind":"identifier"},{"kind":"text","text":"()"}]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/pause()"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"VideoPlayerPlugin.pause()"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/pause()","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC5pauseyyF","title":"pause()","modules":[{"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/pause()":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/pause()","abstract":[],"role":"symbol","title":"pause()","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/pause()","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/play().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/play().json new file mode 100644 index 0000000..d1ce59d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/play().json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/play()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"play"},{"text":"()","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/play()"},"metadata":{"roleHeading":"Instance Method","title":"play()","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"play","kind":"identifier"},{"kind":"text","text":"()"}],"modules":[{"name":"PlaybackSDK"}],"externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC4playyyF","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"VideoPlayerPlugin.play()","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/play()":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"()"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/play()","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/play()","title":"play()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:).json new file mode 100644 index 0000000..4a2ba40 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/playerview(hlsurlstring:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"playerView"},{"kind":"text","text":"("},{"text":"hlsURLString","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView"}]}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"playerView","kind":"identifier"},{"kind":"text","text":"("},{"text":"hlsURLString","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":") -> "},{"text":"AnyView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7AnyViewV"}],"roleHeading":"Instance Method","symbolKind":"method","title":"playerView(hlsURLString:)","modules":[{"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC10playerView12hlsURLString7SwiftUI03AnyG0VSS_tF"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/playerView(hlsURLString:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/playerView(hlsURLString:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"playerView","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hlsURLString"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView","kind":"typeIdentifier"}],"kind":"symbol","title":"playerView(hlsURLString:)","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/playerview(hlsurlstring:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/playerView(hlsURLString:)","abstract":[{"type":"text","text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/removeplayer().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/removeplayer().json new file mode 100644 index 0000000..957f73f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/removeplayer().json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"VideoPlayerPlugin.removePlayer()"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/removeplayer()"]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/removePlayer()","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK"}],"roleHeading":"Instance Method","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC06removeD0yyF","title":"removePlayer()","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"removePlayer","kind":"identifier"},{"kind":"text","text":"()"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"removePlayer","kind":"identifier"},{"kind":"text","text":"()"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/removePlayer()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removePlayer"},{"text":"()","kind":"text"}],"kind":"symbol","title":"removePlayer()","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/removeplayer()","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/removePlayer()","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/setup().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/setup().json new file mode 100644 index 0000000..84a766a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/setup().json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"VideoPlayerPlugin.setup()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/setup()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK"}],"title":"setup()","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC5setupyyF","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"text":"()","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/setup()","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"setup","kind":"identifier"},{"kind":"text","text":"()"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/setup()":{"title":"setup()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/setup()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"setup"},{"kind":"text","text":"()"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/setup()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/version.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/version.json new file mode 100644 index 0000000..81b8a12 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerplugin/version.json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK"}],"title":"version","externalID":"s:11PlaybackSDK20BitmovinPlayerPluginC7versionSSvp","fragments":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"version"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"roleHeading":"Instance Property","symbolKind":"property","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"version","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"VideoPlayerPlugin.version"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/version","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerplugin\/version"]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin/version":{"title":"version","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/version","fragments":[{"kind":"keyword","text":"let"},{"text":" ","kind":"text"},{"text":"version","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin\/version","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview.json new file mode 100644 index 0000000..b460cdb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview.json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"BitMovinPlayerView"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/init(hlsURLString:playerConfig:)"]},{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/body"],"title":"Instance Properties"},{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"],"generated":true,"title":"Default Implementations"}],"relationshipsSections":[{"type":"conformsTo","kind":"relationships","identifiers":["doc:\/\/PlaybackSDK\/7SwiftUI4ViewP"],"title":"Conforms To"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview"]}],"kind":"symbol","metadata":{"symbolKind":"struct","roleHeading":"Structure","modules":[{"name":"PlaybackSDK"}],"fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitMovinPlayerView"}],"role":"symbol","title":"BitMovinPlayerView","externalID":"s:11PlaybackSDK18BitMovinPlayerViewV","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}]},"references":{"doc://PlaybackSDK/7SwiftUI4ViewP":{"type":"unresolvable","title":"SwiftUI.View","identifier":"doc:\/\/PlaybackSDK\/7SwiftUI4ViewP"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/body":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/body","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/body","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"text":": ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"body"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/init(hlsURLString:playerConfig:)":{"title":"init(hlsURLString:playerConfig:)","abstract":[],"type":"topic","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"hlsURLString","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"playerConfig","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@BitmovinPlayerCore@objc(cs)BMPPlayerConfig","text":"PlayerConfig","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/init(hlsURLString:playerConfig:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/init(hlsurlstring:playerconfig:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:).json new file mode 100644 index 0000000..e526c82 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accentColor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"accentColor","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Color","preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accentColor(_:)"},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use the asset catalog's accent color or View.tint(_:) instead."}],"type":"paragraph"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accentColor","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE11accentColoryQrAA0E0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"deprecated":false,"beta":false,"name":"iOS","unavailable":false,"deprecatedAt":"100000.0","introducedAt":"13.0","message":"Use the asset catalog's accent color or View.tint(_:) instead."},{"message":"Use the asset catalog's accent color or View.tint(_:) instead.","deprecated":false,"introducedAt":"10.15","beta":false,"name":"macOS","unavailable":false,"deprecatedAt":"100000.0"},{"deprecated":false,"name":"tvOS","unavailable":false,"message":"Use the asset catalog's accent color or View.tint(_:) instead.","deprecatedAt":"100000.0","beta":false,"introducedAt":"13.0"},{"beta":false,"unavailable":false,"deprecatedAt":"100000.0","name":"watchOS","deprecated":false,"introducedAt":"6.0","message":"Use the asset catalog's accent color or View.tint(_:) instead."},{"beta":false,"deprecatedAt":"100000.0","deprecated":false,"introducedAt":"1.0","name":"visionOS","message":"Use the asset catalog's accent color or View.tint(_:) instead.","unavailable":false}],"title":"accentColor(_:)","roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accentcolor(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accentColor(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accentColor(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accentColor(_:)","title":"accentColor(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accentcolor(_:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accentColor"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"deprecated":true},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2.json new file mode 100644 index 0000000..de3da21 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"text":"activationPoint","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-24jl2"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-24jl2","interfaceLanguage":"swift"},"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGPoint","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"externalID":"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","symbolKind":"method","platforms":[{"introducedAt":"13.0","deprecated":false,"renamed":"accessibilityActivationPoint(_:)","name":"iOS","unavailable":false,"deprecatedAt":"100000.0","beta":false},{"introducedAt":"10.15","deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"name":"macOS","beta":false,"renamed":"accessibilityActivationPoint(_:)"},{"introducedAt":"13.0","unavailable":false,"deprecatedAt":"100000.0","beta":false,"renamed":"accessibilityActivationPoint(_:)","name":"tvOS","deprecated":false},{"deprecated":false,"deprecatedAt":"100000.0","beta":false,"introducedAt":"6.0","unavailable":false,"renamed":"accessibilityActivationPoint(_:)","name":"watchOS"},{"beta":false,"introducedAt":"1.0","unavailable":false,"renamed":"accessibilityActivationPoint(_:)","deprecatedAt":"100000.0","name":"visionOS","deprecated":false}],"roleHeading":"Instance Method","title":"accessibility(activationPoint:)"},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibility(activationPoint:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(activationPoint:)-24jl2":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","deprecated":true,"title":"accessibility(activationPoint:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-24jl2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-24jl2"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6.json new file mode 100644 index 0000000..2fac2a4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6.json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibility(activationPoint:)","extendedModule":"SwiftUI","platforms":[{"unavailable":false,"introducedAt":"13.0","renamed":"accessibilityActivationPoint(_:)","name":"iOS","deprecatedAt":"100000.0","deprecated":false,"beta":false},{"beta":false,"deprecated":false,"deprecatedAt":"100000.0","unavailable":false,"renamed":"accessibilityActivationPoint(_:)","name":"macOS","introducedAt":"10.15"},{"name":"tvOS","beta":false,"deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","renamed":"accessibilityActivationPoint(_:)","unavailable":false},{"name":"watchOS","renamed":"accessibilityActivationPoint(_:)","unavailable":false,"introducedAt":"6.0","deprecatedAt":"100000.0","deprecated":false,"beta":false},{"unavailable":false,"beta":false,"deprecatedAt":"100000.0","introducedAt":"1.0","deprecated":false,"renamed":"accessibilityActivationPoint(_:)","name":"visionOS"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"activationPoint","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE13accessibility15activationPointAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0V_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-2fgn6"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activationPoint"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-2fgn6"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibility(activationPoint:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(activationPoint:)-2fgn6":{"title":"accessibility(activationPoint:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-2fgn6","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-2fgn6","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:).json new file mode 100644 index 0000000..b7ce4cc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(addTraits:)"},"metadata":{"title":"accessibility(addTraits:)","externalID":"s:7SwiftUI4ViewPAAE13accessibility9addTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"addTraits"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"platforms":[{"unavailable":false,"introducedAt":"13.0","beta":false,"renamed":"accessibilityAddTraits(_:)","deprecated":false,"name":"iOS","deprecatedAt":"100000.0"},{"beta":false,"deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","renamed":"accessibilityAddTraits(_:)","name":"macOS","introducedAt":"10.15"},{"name":"tvOS","beta":false,"introducedAt":"13.0","renamed":"accessibilityAddTraits(_:)","unavailable":false,"deprecated":false,"deprecatedAt":"100000.0"},{"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"6.0","deprecatedAt":"100000.0","deprecated":false,"renamed":"accessibilityAddTraits(_:)"},{"name":"visionOS","deprecatedAt":"100000.0","beta":false,"renamed":"accessibilityAddTraits(_:)","introducedAt":"1.0","deprecated":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"SwiftUI","role":"symbol"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(addtraits:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"text":"addTraits","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"traits","kind":"internalParam"},{"kind":"text","text":": "},{"text":"AccessibilityTraits","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["iOS"]}]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibility(addTraits:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(addTraits:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(addtraits:)","type":"topic","title":"accessibility(addTraits:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"addTraits"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"deprecated":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(addTraits:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:).json new file mode 100644 index 0000000..7e567b7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","role":"symbol","title":"accessibility(hidden:)","externalID":"s:7SwiftUI4ViewPAAE13accessibility6hiddenAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSb_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"deprecatedAt":"100000.0","name":"iOS","renamed":"accessibilityHidden(_:)","unavailable":false,"deprecated":false,"introducedAt":"13.0"},{"deprecated":false,"unavailable":false,"renamed":"accessibilityHidden(_:)","deprecatedAt":"100000.0","name":"macOS","beta":false,"introducedAt":"10.15"},{"unavailable":false,"deprecated":false,"name":"tvOS","deprecatedAt":"100000.0","beta":false,"renamed":"accessibilityHidden(_:)","introducedAt":"13.0"},{"deprecatedAt":"100000.0","beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","renamed":"accessibilityHidden(_:)","introducedAt":"6.0"},{"deprecated":false,"renamed":"accessibilityHidden(_:)","deprecatedAt":"100000.0","unavailable":false,"name":"visionOS","beta":false,"introducedAt":"1.0"}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"text":"hidden","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hidden:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibility(hidden:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"hidden"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hidden:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(hidden:)":{"title":"accessibility(hidden:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hidden:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"hidden"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hidden:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:).json new file mode 100644 index 0000000..5b1ca82 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibility(hint:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"hint","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hint:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","title":"accessibility(hint:)","extendedModule":"SwiftUI","platforms":[{"beta":false,"introducedAt":"13.0","deprecated":false,"renamed":"accessibilityHint(_:)","unavailable":false,"name":"iOS","deprecatedAt":"100000.0"},{"unavailable":false,"deprecatedAt":"100000.0","name":"macOS","deprecated":false,"beta":false,"introducedAt":"10.15","renamed":"accessibilityHint(_:)"},{"introducedAt":"13.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","renamed":"accessibilityHint(_:)"},{"unavailable":false,"introducedAt":"6.0","renamed":"accessibilityHint(_:)","deprecated":false,"name":"watchOS","deprecatedAt":"100000.0","beta":false},{"renamed":"accessibilityHint(_:)","unavailable":false,"name":"visionOS","beta":false,"introducedAt":"1.0","deprecated":false,"deprecatedAt":"100000.0"}],"externalID":"s:7SwiftUI4ViewPAAE13accessibility4hintAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"hint","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hint:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(hint:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hint:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"hint","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hint:)","title":"accessibility(hint:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:).json new file mode 100644 index 0000000..2c115b5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibility(identifier:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(identifier:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"beta":false,"introducedAt":"13.0","unavailable":false,"name":"iOS","deprecatedAt":"100000.0","renamed":"accessibilityIdentifier(_:)"},{"beta":false,"name":"macOS","unavailable":false,"renamed":"accessibilityIdentifier(_:)","deprecatedAt":"100000.0","introducedAt":"10.15","deprecated":false},{"introducedAt":"13.0","deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false,"renamed":"accessibilityIdentifier(_:)"},{"introducedAt":"6.0","name":"watchOS","deprecatedAt":"100000.0","unavailable":false,"renamed":"accessibilityIdentifier(_:)","beta":false,"deprecated":false},{"introducedAt":"1.0","deprecatedAt":"100000.0","name":"visionOS","unavailable":false,"renamed":"accessibilityIdentifier(_:)","deprecated":false,"beta":false}],"title":"accessibility(identifier:)","externalID":"s:7SwiftUI4ViewPAAE13accessibility10identifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSS_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"text":"identifier","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(identifier:)"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(identifier:)":{"title":"accessibility(identifier:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(identifier:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"identifier","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(identifier:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:).json new file mode 100644 index 0000000..8a30408 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:).json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"inputLabels"},{"kind":"text","text":": ["},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"accessibility(inputLabels:)","role":"symbol","roleHeading":"Instance Method","platforms":[{"deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false,"name":"iOS","beta":false,"renamed":"accessibilityInputLabels(_:)"},{"renamed":"accessibilityInputLabels(_:)","deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"10.15"},{"introducedAt":"13.0","unavailable":false,"name":"tvOS","renamed":"accessibilityInputLabels(_:)","deprecatedAt":"100000.0","deprecated":false,"beta":false},{"beta":false,"introducedAt":"6.0","name":"watchOS","renamed":"accessibilityInputLabels(_:)","deprecatedAt":"100000.0","deprecated":false,"unavailable":false},{"introducedAt":"1.0","beta":false,"deprecated":false,"deprecatedAt":"100000.0","name":"visionOS","unavailable":false,"renamed":"accessibilityInputLabels(_:)"}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE13accessibility11inputLabelsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVG_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"inputLabels"},{"kind":"text","text":": ["},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"]) -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(inputlabels:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(inputLabels:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibility(inputLabels:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(inputLabels:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inputLabels"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","deprecated":true,"title":"accessibility(inputLabels:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(inputlabels:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(inputLabels:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(label:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(label:).json new file mode 100644 index 0000000..64b846a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(label:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"label","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"externalID":"s:7SwiftUI4ViewPAAE13accessibility5labelAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"accessibility(label:)","platforms":[{"introducedAt":"13.0","deprecated":false,"renamed":"accessibilityLabel(_:)","name":"iOS","unavailable":false,"deprecatedAt":"100000.0","beta":false},{"name":"macOS","renamed":"accessibilityLabel(_:)","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15","deprecatedAt":"100000.0"},{"renamed":"accessibilityLabel(_:)","name":"tvOS","deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false,"beta":false},{"deprecated":false,"beta":false,"renamed":"accessibilityLabel(_:)","introducedAt":"6.0","name":"watchOS","unavailable":false,"deprecatedAt":"100000.0"},{"name":"visionOS","unavailable":false,"renamed":"accessibilityLabel(_:)","deprecated":false,"beta":false,"deprecatedAt":"100000.0","introducedAt":"1.0"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibility(label:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(label:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(label:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"text":"label","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(label:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(label:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"label","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(label:)","kind":"symbol","title":"accessibility(label:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:).json new file mode 100644 index 0000000..d66bdab --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibility(removeTraits:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(removetraits:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"removeTraits"},{"kind":"text","text":": "},{"text":"AccessibilityTraits","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"extendedModule":"SwiftUI","symbolKind":"method","title":"accessibility(removeTraits:)","role":"symbol","platforms":[{"deprecatedAt":"100000.0","introducedAt":"13.0","renamed":"accessibilityRemoveTraits(_:)","unavailable":false,"beta":false,"deprecated":false,"name":"iOS"},{"deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"renamed":"accessibilityRemoveTraits(_:)","introducedAt":"10.15","beta":false,"name":"macOS"},{"renamed":"accessibilityRemoveTraits(_:)","deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false,"name":"tvOS","beta":false},{"unavailable":false,"deprecatedAt":"100000.0","renamed":"accessibilityRemoveTraits(_:)","beta":false,"deprecated":false,"name":"watchOS","introducedAt":"6.0"},{"beta":false,"deprecatedAt":"100000.0","renamed":"accessibilityRemoveTraits(_:)","name":"visionOS","unavailable":false,"deprecated":false,"introducedAt":"1.0"}],"externalID":"s:7SwiftUI4ViewPAAE13accessibility12removeTraitsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0V_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(removeTraits:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"text":"removeTraits","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"traits","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AccessibilityTraits","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(removeTraits:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(removetraits:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"kind":"externalParam","text":"removeTraits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(removeTraits:)","kind":"symbol","title":"accessibility(removeTraits:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:).json new file mode 100644 index 0000000..acdadb0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:).json @@ -0,0 +1 @@ +{"metadata":{"title":"accessibility(selectionIdentifier:)","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE13accessibility19selectionIdentifierAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGs11AnyHashableV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"text":"selectionIdentifier","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AnyHashable","kind":"typeIdentifier","preciseIdentifier":"s:s11AnyHashableV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"13.0","beta":false,"deprecated":true,"name":"iOS","unavailable":false},{"name":"macOS","unavailable":false,"introducedAt":"10.15","deprecated":true,"beta":false},{"deprecated":true,"name":"tvOS","introducedAt":"13.0","unavailable":false,"beta":false},{"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":true,"beta":false},{"name":"visionOS","beta":false,"unavailable":false,"introducedAt":"1.0","deprecatedAt":"1.0","deprecated":false}],"role":"symbol"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(selectionidentifier:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(selectionIdentifier:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibility(selectionIdentifier:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"selectionIdentifier","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s11AnyHashableV","text":"AnyHashable"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(selectionIdentifier:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"selectionIdentifier"},{"text":": ","kind":"text"},{"text":"AnyHashable","kind":"typeIdentifier","preciseIdentifier":"s:s11AnyHashableV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","deprecated":true,"title":"accessibility(selectionIdentifier:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(selectionidentifier:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(selectionIdentifier:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:).json new file mode 100644 index 0000000..017452f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecatedAt":"100000.0","beta":false,"renamed":"accessibilitySortPriority(_:)"},{"beta":false,"deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","introducedAt":"10.15","name":"macOS","renamed":"accessibilitySortPriority(_:)"},{"deprecated":false,"deprecatedAt":"100000.0","beta":false,"renamed":"accessibilitySortPriority(_:)","name":"tvOS","unavailable":false,"introducedAt":"13.0"},{"unavailable":false,"deprecated":false,"name":"watchOS","renamed":"accessibilitySortPriority(_:)","introducedAt":"6.0","deprecatedAt":"100000.0","beta":false},{"name":"visionOS","beta":false,"introducedAt":"1.0","deprecatedAt":"100000.0","deprecated":false,"renamed":"accessibilitySortPriority(_:)","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE13accessibility12sortPriorityAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSd_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"sortPriority","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"title":"accessibility(sortPriority:)","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"sortPriority","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(sortpriority:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(sortPriority:)","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibility(sortPriority:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(sortPriority:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"sortPriority"},{"text":": ","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","deprecated":true,"title":"accessibility(sortPriority:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(sortpriority:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(sortPriority:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(value:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(value:).json new file mode 100644 index 0000000..09e217c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibility(value:).json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibility(value:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(value:)"},"sections":[],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"deprecatedAt":"100000.0","renamed":"accessibilityValue(_:)","unavailable":false,"introducedAt":"13.0","beta":false},{"name":"macOS","introducedAt":"10.15","unavailable":false,"deprecated":false,"renamed":"accessibilityValue(_:)","beta":false,"deprecatedAt":"100000.0"},{"renamed":"accessibilityValue(_:)","deprecatedAt":"100000.0","name":"tvOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"13.0"},{"introducedAt":"6.0","deprecatedAt":"100000.0","unavailable":false,"beta":false,"renamed":"accessibilityValue(_:)","name":"watchOS","deprecated":false},{"renamed":"accessibilityValue(_:)","deprecated":false,"introducedAt":"1.0","deprecatedAt":"100000.0","name":"visionOS","beta":false,"unavailable":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE13accessibility5valueAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"title":"accessibility(value:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(value:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(value:)":{"title":"accessibility(value:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(value:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:).json new file mode 100644 index 0000000..78420dd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE19accessibilityActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE4KindV_yyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"("},{"text":"AccessibilityActionKind","preciseIdentifier":"s:7SwiftUI23AccessibilityActionKindV","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"10.15","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"beta":false,"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false}],"title":"accessibilityAction(_:_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"actionKind","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AccessibilityActionKind","preciseIdentifier":"s:7SwiftUI23AccessibilityActionKindV"},{"text":" = .default, ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"handler","kind":"internalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityAction(_:_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(_:_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(_:_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"("},{"text":"AccessibilityActionKind","preciseIdentifier":"s:7SwiftUI23AccessibilityActionKindV","kind":"typeIdentifier"},{"text":", () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(_:_:)","kind":"symbol","title":"accessibilityAction(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(_:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:).json new file mode 100644 index 0000000..5ae5b40 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:).json @@ -0,0 +1 @@ +{"metadata":{"symbolKind":"method","title":"accessibilityAction(action:label:)","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"15.0"},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE19accessibilityAction6action5labelQryyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Label","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"action","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"label","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Label","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityAction(action:label:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(action:label:)"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(action:label:)","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityAction","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Label"},{"kind":"text","text":">("},{"kind":"externalParam","text":"action"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"text":"label","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Label","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Label","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(action:label:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Label"},{"text":">(","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"label"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Label"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"accessibilityAction(action:label:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(action:label:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(action:label:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz.json new file mode 100644 index 0000000..6287867 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAction","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"named"},{"kind":"text","text":" "},{"text":"name","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"handler"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextV_yyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.15","name":"macOS"},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"13.0"},{"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false}],"symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"kind":"text","text":"("},{"text":"named","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"accessibilityAction(named:_:)","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-2qqmz"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityAction(named:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-2qqmz"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-2qqmz":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-2qqmz","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"named"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-2qqmz","kind":"symbol","title":"accessibilityAction(named:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn.json new file mode 100644 index 0000000..8762966 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityAction"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"named","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"name"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"handler","kind":"internalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":"> ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-3yhkn"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd___yyctSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS","unavailable":false},{"name":"macOS","unavailable":false,"introducedAt":"11.0","deprecated":false,"beta":false},{"deprecated":false,"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"14.0"},{"unavailable":false,"introducedAt":"7.0","beta":false,"name":"watchOS","deprecated":false}],"extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"named","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"roleHeading":"Instance Method","title":"accessibilityAction(named:_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-3yhkn"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityAction(named:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-3yhkn":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityAction"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"named"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityAction(named:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-3yhkn","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-3yhkn"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik.json new file mode 100644 index 0000000..a7cf6d1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityAction(named:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"extendedModule":"SwiftUI","role":"symbol","title":"accessibilityAction(named:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"kind":"text","text":"("},{"text":"named","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE19accessibilityAction5named_AA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_yyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"14.0"},{"beta":false,"name":"macOS","introducedAt":"11.0","deprecated":false,"unavailable":false},{"name":"tvOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0"}]},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-752ik","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"named"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"nameKey"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"handler","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-752ik"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-752ik":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-752ik","role":"symbol","title":"accessibilityAction(named:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-752ik","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"text":"(","kind":"text"},{"text":"named","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:).json new file mode 100644 index 0000000..1ca15a6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityActions(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityActions","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"content","kind":"internalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactions(_:)"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActions(_:)"},"kind":"symbol","metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityActions"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0","name":"iOS"},{"beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"macOS"},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"16.0"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"9.0","beta":false}],"symbolKind":"method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20accessibilityActionsyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityActions(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActions(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactions(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityActions"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActions(_:)","kind":"symbol","title":"accessibilityActions(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt.json new file mode 100644 index 0000000..ffd9282 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityActivationPoint","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"activationPoint"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA04UnitF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityActivationPoint","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"14.0","deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"11.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"unavailable":false,"introducedAt":"7.0","name":"watchOS","deprecated":false,"beta":false}],"title":"accessibilityActivationPoint(_:)","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-53ntt","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-53ntt"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityActivationPoint(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActivationPoint(_:)-53ntt":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-53ntt","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityActivationPoint","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-53ntt","kind":"symbol","title":"accessibilityActivationPoint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8.json new file mode 100644 index 0000000..54daf02 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8.json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE28accessibilityActivationPointyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSo7CGPointVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityActivationPoint"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"accessibilityActivationPoint(_:)","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"14.0","deprecated":false},{"unavailable":false,"introducedAt":"11.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"introducedAt":"7.0","unavailable":false,"beta":false}],"role":"symbol"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-7nfm8"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-7nfm8","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityActivationPoint","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityActivationPoint(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActivationPoint(_:)-7nfm8":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-7nfm8","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-7nfm8","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityActivationPoint"},{"kind":"text","text":"("},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityActivationPoint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:).json new file mode 100644 index 0000000..0fcaf25 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE22accessibilityAddTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"11.0","name":"macOS"},{"deprecated":false,"name":"tvOS","introducedAt":"14.0","unavailable":false,"beta":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAddTraits","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityAddTraits(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityAddTraits(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaddtraits(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAddTraits(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAddTraits","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"traits","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","kind":"typeIdentifier","text":"AccessibilityTraits"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAddTraits(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAddTraits","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AccessibilityTraits","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityAddTraits(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaddtraits(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAddTraits(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:).json new file mode 100644 index 0000000..506baa2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityAdjustableAction(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityAdjustableAction","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"handler"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"AccessibilityAdjustmentDirection","preciseIdentifier":"s:7SwiftUI32AccessibilityAdjustmentDirectionO"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityadjustableaction(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAdjustableAction(_:)"},"metadata":{"title":"accessibilityAdjustableAction(_:)","symbolKind":"method","extendedModule":"SwiftUI","roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.15","name":"macOS"},{"introducedAt":"13.0","deprecated":false,"name":"tvOS","unavailable":false,"beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"6.0"}],"externalID":"s:7SwiftUI4ViewPAAE29accessibilityAdjustableActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA0I19AdjustmentDirectionOcF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAdjustableAction","kind":"identifier"},{"text":"((","kind":"text"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityAdjustmentDirectionO","kind":"typeIdentifier","text":"AccessibilityAdjustmentDirection"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAdjustableAction(_:)":{"title":"accessibilityAdjustableAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityadjustableaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityAdjustableAction","kind":"identifier"},{"text":"((","kind":"text"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityAdjustmentDirectionO","text":"AccessibilityAdjustmentDirection","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAdjustableAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:).json new file mode 100644 index 0000000..5ff82c4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChartDescriptor(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityChartDescriptor(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityChartDescriptor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"representable","kind":"internalParam"},{"kind":"text","text":": "},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"AXChartDescriptorRepresentable","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30AXChartDescriptorRepresentableP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychartdescriptor(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityChartDescriptor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"beta":false,"introducedAt":"8.0","name":"watchOS","unavailable":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE28accessibilityChartDescriptoryQrqd__AA07AXChartF13RepresentableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"accessibilityChartDescriptor(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityChartDescriptor(_:)":{"abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChartDescriptor(_:)","kind":"symbol","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychartdescriptor(_:)","title":"accessibilityChartDescriptor(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityChartDescriptor"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:).json new file mode 100644 index 0000000..b659120 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityChildren","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"children","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychildren(children:)"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE21accessibilityChildren8childrenQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityChildren"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"children","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","extendedModule":"SwiftUI","title":"accessibilityChildren(children:)","platforms":[{"beta":false,"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"15.0","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"8.0","unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityChildren(children:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChildren(children:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityChildren(children:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychildren(children:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChildren(children:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityChildren","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"children","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityChildren(children:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg.json new file mode 100644 index 0000000..cade08a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg.json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-2ytxg"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"label"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance","kind":"typeIdentifier"},{"text":" = .default) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-2ytxg"]}],"metadata":{"platforms":[{"name":"iOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0"},{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS","beta":false},{"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA4TextV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"text":"AXCustomContent","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"accessibilityCustomContent(_:_:importance:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-2ytxg":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-2ytxg","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-2ytxg","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier","text":"AXCustomContent"},{"kind":"text","text":"."},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l.json new file mode 100644 index 0000000..4dd37a8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l.json @@ -0,0 +1 @@ +{"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-3x90l","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"label","kind":"internalParam"},{"kind":"text","text":": "},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"text":" = .default) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":"> ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"}],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGqd___qd_0_So08AXCustomF10ImportanceVtSyRd__SyRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"role":"symbol","platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"accessibilityCustomContent(_:_:importance:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-3x90l"]}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Using non-localized strings for labels is not directly supported. Instead, wrap both the label and the value in a Text struct."}],"type":"paragraph"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-3x90l":{"title":"accessibilityCustomContent(_:_:importance:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-3x90l","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-3x90l","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73.json new file mode 100644 index 0000000..fa73a63 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-57t73","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"15.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"12.0","name":"macOS","beta":false,"deprecated":false},{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"8.0"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA015LocalizedStringL0VSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"accessibilityCustomContent(_:_:importance:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-57t73"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"valueKey","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"text":" = .default) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-57t73":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-57t73","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier","text":"AccessibilityCustomContentKey"},{"kind":"text","text":", "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"abstract":[],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-57t73","kind":"symbol","role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k.json new file mode 100644 index 0000000..f927d57 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k.json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"text":"AccessibilityCustomContentKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"?, "},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier","text":"AXCustomContent"},{"text":".","kind":"text"},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"name":"iOS","introducedAt":"15.0","unavailable":false,"beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"role":"symbol","title":"accessibilityCustomContent(_:_:importance:)","externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_AA4TextVSgSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7622k"},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","text":"AccessibilityCustomContentKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"text":"AXCustomContent","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":" = .default) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7622k"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-7622k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7622k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7622k"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j.json new file mode 100644 index 0000000..96dc34f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j.json @@ -0,0 +1 @@ +{"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","platforms":[{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"8.0","beta":false}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"extendedModule":"SwiftUI","title":"accessibilityCustomContent(_:_:importance:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7ee7j"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"labelKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"text":" = .default) -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":"> ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7ee7j"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-7ee7j":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7ee7j","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7ee7j","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw.json new file mode 100644 index 0000000..02797ad --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw.json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-883iw"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","text":"AccessibilityCustomContentKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"kind":"text","text":" = .default) -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["iOS"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-883iw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityCustomContent(_:_:importance:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":"accessibilityCustomContent(_:_:importance:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier","text":"AccessibilityCustomContentKey"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"kind":"text","text":"."},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0ieF3KeyV_qd__So08AXCustomF10ImportanceVtSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"name":"tvOS","deprecated":false,"introducedAt":"15.0"},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-883iw":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-883iw","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-883iw"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3.json new file mode 100644 index 0000000..a43f9b3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_ALSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"15.0","beta":false},{"unavailable":false,"name":"watchOS","introducedAt":"8.0","beta":false,"deprecated":false}],"title":"accessibilityCustomContent(_:_:importance:)","extendedModule":"SwiftUI"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-88mk3"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityCustomContent(_:_:importance:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"labelKey","kind":"internalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"valueKey","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"kind":"text","text":" = .default) -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-88mk3"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-88mk3":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-88mk3","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-88mk3","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv.json new file mode 100644 index 0000000..383dc48 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-8g1kv","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"labelKey"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"text":".","kind":"text"},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":" = .default) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","title":"accessibilityCustomContent(_:_:importance:)","platforms":[{"beta":false,"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"beta":false,"introducedAt":"8.0","unavailable":false,"name":"watchOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE26accessibilityCustomContent__10importanceAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyV_AA4TextVSo08AXCustomF10ImportanceVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"role":"symbol","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-8g1kv"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityCustomContent(_:_:importance:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-8g1kv":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-8g1kv","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-8g1kv","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:).json new file mode 100644 index 0000000..9cb1bb7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityDirectTouch(_:options:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitydirecttouch(_:options:)"]}],"metadata":{"title":"accessibilityDirectTouch(_:options:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"14.0","name":"macOS"},{"deprecated":false,"beta":false,"introducedAt":"17.0","unavailable":false,"name":"tvOS"},{"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"10.0","deprecated":false}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityDirectTouch","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"kind":"text","text":": "},{"text":"AccessibilityDirectTouchOptions","preciseIdentifier":"s:7SwiftUI31AccessibilityDirectTouchOptionsV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE24accessibilityDirectTouch_7optionsAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSb_AA0jeF7OptionsVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityDirectTouch"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"isDirectTouchArea","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true, ","kind":"text"},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"text":"AccessibilityDirectTouchOptions","preciseIdentifier":"s:7SwiftUI31AccessibilityDirectTouchOptionsV","kind":"typeIdentifier"},{"kind":"text","text":" = []) -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityDirectTouch(_:options:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityDirectTouch(_:options:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityDirectTouch"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"text":"AccessibilityDirectTouchOptions","preciseIdentifier":"s:7SwiftUI31AccessibilityDirectTouchOptionsV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityDirectTouch(_:options:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitydirecttouch(_:options:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityDirectTouch(_:options:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:).json new file mode 100644 index 0000000..b512eec --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"10.15"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"13.0"},{"unavailable":false,"introducedAt":"6.0","deprecated":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE20accessibilityElement8childrenQrAA26AccessibilityChildBehaviorV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityElement(children:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityElement","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"children"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI26AccessibilityChildBehaviorV","kind":"typeIdentifier","text":"AccessibilityChildBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityElement(children:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityElement(children:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityElement"},{"text":"(","kind":"text"},{"text":"children","kind":"externalParam"},{"kind":"text","text":": "},{"text":"AccessibilityChildBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26AccessibilityChildBehaviorV"},{"text":" = .ignore) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityelement(children:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityElement(children:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityelement(children:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityElement"},{"kind":"text","text":"("},{"text":"children","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI26AccessibilityChildBehaviorV","text":"AccessibilityChildBehavior","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityElement(children:)","kind":"symbol","title":"accessibilityElement(children:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:).json new file mode 100644 index 0000000..1a1d36d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:)"]}],"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityFocused(_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"accessibilityFocused(_:)","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0","beta":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS","beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityFocused","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV","kind":"typeIdentifier","text":"AccessibilityFocusState"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">."},{"preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20accessibilityFocusedyQrAA23AccessibilityFocusStateV7BindingVySb_GF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityFocused"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"condition","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"AccessibilityFocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityFocused(_:)":{"title":"accessibilityFocused(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityFocused","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV","text":"AccessibilityFocusState"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","text":"Binding"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:).json new file mode 100644 index 0000000..d75354d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityFocused"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Value"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"binding","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV","text":"AccessibilityFocusState","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":">."},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"equals"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Value"},{"text":" : ","kind":"text"},{"text":"Hashable","preciseIdentifier":"s:SH","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:equals:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:equals:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE20accessibilityFocused_6equalsQrAA23AccessibilityFocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityFocused"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"AccessibilityFocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV"},{"kind":"text","text":"<"},{"text":"Value","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","text":"Binding"},{"text":", ","kind":"text"},{"text":"equals","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"symbolKind":"method","title":"accessibilityFocused(_:equals:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0","name":"macOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityFocused(_:equals:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityFocused(_:equals:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:equals:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:equals:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityFocused"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"AccessibilityFocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Value"},{"text":">.","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"equals","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityFocused(_:equals:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:).json new file mode 100644 index 0000000..c32b672 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHeading"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"level","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25AccessibilityHeadingLevelO","text":"AccessibilityHeadingLevel"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityheading(_:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityHeading(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"accessibilityHeading(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHeading","kind":"identifier"},{"text":"(","kind":"text"},{"text":"AccessibilityHeadingLevel","preciseIdentifier":"s:7SwiftUI25AccessibilityHeadingLevelO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":[{"deprecated":false,"introducedAt":"15.0","unavailable":false,"name":"iOS","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"12.0","name":"macOS"},{"name":"tvOS","introducedAt":"15.0","unavailable":false,"beta":false,"deprecated":false},{"unavailable":false,"deprecated":false,"introducedAt":"8.0","name":"watchOS","beta":false}],"symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20accessibilityHeadingyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0hE5LevelOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHeading(_:)"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHeading(_:)":{"title":"accessibilityHeading(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityheading(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHeading","kind":"identifier"},{"text":"(","kind":"text"},{"text":"AccessibilityHeadingLevel","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25AccessibilityHeadingLevelO"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHeading(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:).json new file mode 100644 index 0000000..ec909ce --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhidden(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityHidden","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"platforms":[{"unavailable":false,"name":"iOS","introducedAt":"14.0","beta":false,"deprecated":false},{"introducedAt":"11.0","deprecated":false,"name":"macOS","unavailable":false,"beta":false},{"name":"tvOS","introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false},{"name":"watchOS","introducedAt":"7.0","unavailable":false,"deprecated":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE19accessibilityHiddenyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","title":"accessibilityHidden(_:)"},"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHidden(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityHidden(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHidden"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"hidden","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHidden(_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHidden"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhidden(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHidden(_:)","title":"accessibilityHidden(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze.json new file mode 100644 index 0000000..9049e8b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityHint(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-4nhze","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","symbolKind":"method","title":"accessibilityHint(_:)","roleHeading":"Instance Method","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"14.0","unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"11.0","name":"macOS"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"7.0","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityHint","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityHint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"hintKey","kind":"internalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-4nhze"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-4nhze":{"title":"accessibilityHint(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-4nhze","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-4nhze","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityHint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb.json new file mode 100644 index 0000000..484c889 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityHint(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"metadata":{"roleHeading":"Instance Method","title":"accessibilityHint(_:)","role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHint"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"externalID":"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"introducedAt":"14.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"11.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"beta":false,"introducedAt":"14.0","name":"tvOS","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"7.0","name":"watchOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-7pklb"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHint","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hint"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","kind":"typeIdentifier","text":"StringProtocol"}],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-7pklb"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-7pklb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-7pklb","title":"accessibilityHint(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHint","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-7pklb","type":"topic","abstract":[],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f.json new file mode 100644 index 0000000..4ceb102 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-8ro7f"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHint"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"hint","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-8ro7f"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityHint(_:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityHint"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"14.0"},{"deprecated":false,"introducedAt":"11.0","unavailable":false,"name":"macOS","beta":false},{"name":"tvOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"14.0"},{"beta":false,"deprecated":false,"introducedAt":"7.0","name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE17accessibilityHintyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","extendedModule":"SwiftUI","title":"accessibilityHint(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-8ro7f":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHint"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-8ro7f","abstract":[],"role":"symbol","kind":"symbol","title":"accessibilityHint(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-8ro7f","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:).json new file mode 100644 index 0000000..89be9b2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityIdentifier(_:)"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityIdentifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"identifier","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"metadata":{"platforms":[{"introducedAt":"14.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"11.0"},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"introducedAt":"7.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE23accessibilityIdentifieryAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSSF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityIdentifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"accessibilityIdentifier(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityidentifier(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIdentifier(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityIdentifier(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityidentifier(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIdentifier(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityIdentifier","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityIdentifier(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:).json new file mode 100644 index 0000000..3cb62c6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityignoresinvertcolors(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIgnoresInvertColors(_:)"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityIgnoresInvertColors(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"platforms":[{"beta":false,"name":"iOS","introducedAt":"14.0","deprecated":false,"unavailable":false},{"name":"macOS","unavailable":false,"introducedAt":"11.0","deprecated":false,"beta":false},{"unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false,"name":"tvOS"},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"7.0","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE32accessibilityIgnoresInvertColorsyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityIgnoresInvertColors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"accessibilityIgnoresInvertColors(_:)","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityIgnoresInvertColors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"active"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityIgnoresInvertColors(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityignoresinvertcolors(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIgnoresInvertColors(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityIgnoresInvertColors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityIgnoresInvertColors(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h.json new file mode 100644 index 0000000..0ed7677 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-6r70h"},"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityInputLabels","kind":"identifier"},{"text":"([","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA4TextVGF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityInputLabels(_:)","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"iOS"},{"beta":false,"introducedAt":"11.0","deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"beta":false,"introducedAt":"7.0","deprecated":false,"unavailable":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityInputLabels","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"inputLabels","kind":"internalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-6r70h"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityInputLabels(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-6r70h":{"title":"accessibilityInputLabels(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-6r70h","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityInputLabels","kind":"identifier"},{"kind":"text","text":"(["},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-6r70h","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r.json new file mode 100644 index 0000000..0330648 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityInputLabels"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"inputLabelKeys"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":"]) -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","metadata":{"role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityInputLabels","kind":"identifier"},{"text":"([","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":"]) -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayAA18LocalizedStringKeyVGF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"introducedAt":"14.0","unavailable":false,"name":"iOS","beta":false},{"introducedAt":"11.0","name":"macOS","unavailable":false,"beta":false,"deprecated":false},{"unavailable":false,"name":"tvOS","beta":false,"introducedAt":"14.0","deprecated":false},{"introducedAt":"7.0","beta":false,"name":"watchOS","deprecated":false,"unavailable":false}],"symbolKind":"method","title":"accessibilityInputLabels(_:)","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityInputLabels(_:)"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-8ga6r"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-8ga6r","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-8ga6r":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityInputLabels"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityInputLabels(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-8ga6r","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-8ga6r"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o.json new file mode 100644 index 0000000..7bd1978 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o.json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-la1o"},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityInputLabels"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">([","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityInputLabels(_:)","externalID":"s:7SwiftUI4ViewPAAE24accessibilityInputLabelsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSayqd__GSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","role":"symbol","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"14.0"},{"introducedAt":"11.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"7.0","unavailable":false}],"symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityInputLabels(_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-la1o"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityInputLabels","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"inputLabels","kind":"internalParam"},{"kind":"text","text":": ["},{"text":"S","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-la1o":{"type":"topic","title":"accessibilityInputLabels(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-la1o","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityInputLabels","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">(["},{"text":"S","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-la1o","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1.json new file mode 100644 index 0000000..7c165d7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityLabel(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityLabel"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":"> ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLabel"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"role":"symbol","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"14.0","unavailable":false,"beta":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"unavailable":false,"name":"macOS"},{"introducedAt":"14.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"unavailable":false,"beta":false,"introducedAt":"7.0","name":"watchOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityLabel(_:)","extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-1cph1"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-1cph1","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-1cph1":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-1cph1","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLabel"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-1cph1","kind":"symbol","title":"accessibilityLabel(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6.json new file mode 100644 index 0000000..093fff6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7adx6"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityLabel"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS","unavailable":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"14.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"7.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityLabel(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7adx6"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityLabel(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-7adx6":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7adx6","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7adx6","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g.json new file mode 100644 index 0000000..610f30e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7t49g","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLabel"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"extendedModule":"SwiftUI","role":"symbol","platforms":[{"name":"iOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"11.0","deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"7.0","deprecated":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityLabelyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"accessibilityLabel(_:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7t49g"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityLabel(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"labelKey","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-7t49g":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7t49g","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7t49g"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:).json new file mode 100644 index 0000000..3df352f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabeledpair(role:id:in:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabeledPair(role:id:in:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityLabeledPair","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"role"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI28AccessibilityLabeledPairRoleO","kind":"typeIdentifier","text":"AccessibilityLabeledPairRole"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"id"},{"text":": ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"kind":"text","text":" "},{"text":"namespace","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace"},{"text":".","kind":"text"},{"text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"ID","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityLabeledPair(role:id:in:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLabeledPair"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"role","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28AccessibilityLabeledPairRoleO","text":"AccessibilityLabeledPairRole"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"id"},{"text":": ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","text":"ID","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityLabeledPair(role:id:in:)","extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE24accessibilityLabeledPair4role2id2inQrAA013AccessibilityeF4RoleO_qd__AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"14.0","unavailable":false},{"introducedAt":"11.0","unavailable":false,"beta":false,"deprecated":false,"name":"macOS"},{"name":"tvOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabeledPair(role:id:in:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabeledpair(role:id:in:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabeledPair","kind":"identifier"},{"kind":"text","text":"<"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"role"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28AccessibilityLabeledPairRoleO","kind":"typeIdentifier","text":"AccessibilityLabeledPairRole"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"text":": ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ID","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabeledPair(role:id:in:)","kind":"symbol","title":"accessibilityLabeledPair(role:id:in:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:).json new file mode 100644 index 0000000..79862be --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"name":"iOS","deprecated":false,"beta":false,"introducedAt":"14.0"},{"name":"macOS","deprecated":false,"introducedAt":"11.0","unavailable":false,"beta":false},{"introducedAt":"14.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"7.0","beta":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityLinkedGroup"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","kind":"typeIdentifier","text":"Namespace"},{"text":".","kind":"text"},{"text":"ID","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE24accessibilityLinkedGroup2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"accessibilityLinkedGroup(id:in:)","extendedModule":"SwiftUI","role":"symbol"},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLinkedGroup"},{"kind":"text","text":"<"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ID"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"namespace","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Namespace","preciseIdentifier":"s:7SwiftUI9NamespaceV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ID","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"ID"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Hashable","preciseIdentifier":"s:SH"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylinkedgroup(id:in:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLinkedGroup(id:in:)"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityLinkedGroup(id:in:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLinkedGroup(id:in:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityLinkedGroup","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":", "},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"accessibilityLinkedGroup(id:in:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylinkedgroup(id:in:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLinkedGroup(id:in:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:).json new file mode 100644 index 0000000..3bbba59 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityremovetraits(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRemoveTraits","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"traits","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRemoveTraits(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityRemoveTraits(_:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE25accessibilityRemoveTraitsyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA0iF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityRemoveTraits(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"11.0","beta":false,"name":"macOS","deprecated":false},{"beta":false,"name":"tvOS","deprecated":false,"introducedAt":"14.0","unavailable":false},{"deprecated":false,"name":"watchOS","introducedAt":"7.0","unavailable":false,"beta":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRemoveTraits"},{"text":"(","kind":"text"},{"text":"AccessibilityTraits","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRemoveTraits(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityremovetraits(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRemoveTraits","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRemoveTraits(_:)","title":"accessibilityRemoveTraits(_:)","role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:).json new file mode 100644 index 0000000..bc6042c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRepresentation","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"representation"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRepresentation(representation:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRepresentation"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"representation"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","title":"accessibilityRepresentation(representation:)","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"beta":false,"name":"iOS","unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"12.0"},{"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"name":"watchOS","introducedAt":"8.0","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE27accessibilityRepresentation14representationQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityRepresentation(representation:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrepresentation(representation:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRepresentation(representation:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrepresentation(representation:)","title":"accessibilityRepresentation(representation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRepresentation","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"representation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRepresentation(representation:)","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:).json new file mode 100644 index 0000000..fb405dc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"title":"accessibilityRespondsToUserInteraction(_:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE38accessibilityRespondsToUserInteractionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false,"name":"iOS"},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0"},{"beta":false,"name":"tvOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"introducedAt":"8.0","unavailable":false,"deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRespondsToUserInteraction"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"extendedModule":"SwiftUI"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRespondsToUserInteraction"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"respondsToUserInteraction","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRespondsToUserInteraction(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRespondsToUserInteraction(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrespondstouserinteraction(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRespondsToUserInteraction(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrespondstouserinteraction(_:)","title":"accessibilityRespondsToUserInteraction(_:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRespondsToUserInteraction"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRespondsToUserInteraction(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28.json new file mode 100644 index 0000000..6b99f3e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityRotor(_:entries:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"systemRotor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityRotorContentBuilderV","text":"AccessibilityRotorContentBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"AccessibilityRotorContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25AccessibilityRotorContentP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-6cl28"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-6cl28","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"15.0","deprecated":false},{"unavailable":false,"introducedAt":"8.0","name":"watchOS","deprecated":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA019AccessibilitySystemE0V_qd__yctAA0gE7ContentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityRotor(_:entries:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"AccessibilitySystemRotor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-6cl28":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-6cl28","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-6cl28","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu.json new file mode 100644 index 0000000..c591ec1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu.json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityRotor(_:entries:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"name":"iOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false,"unavailable":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"introducedAt":"8.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityRotor(_:entries:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA4TextV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8doyu"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"label","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI32AccessibilityRotorContentBuilderV","text":"AccessibilityRotorContentBuilder"},{"text":" ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI25AccessibilityRotorContentP","text":"AccessibilityRotorContent","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8doyu"},"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-8doyu":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8doyu","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8doyu","kind":"symbol","title":"accessibilityRotor(_:entries:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97.json new file mode 100644 index 0000000..b1c9fba --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityRotorContentBuilderV","text":"AccessibilityRotorContentBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":", ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI25AccessibilityRotorContentP","kind":"typeIdentifier","text":"AccessibilityRotorContent"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8hu97"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRotor(_:entries:)"},{"text":".","type":"text"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","platforms":[{"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrqd___qd_0_yctSyRd__AA013AccessibilityE7ContentRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","title":"accessibilityRotor(_:entries:)"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8hu97","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-8hu97":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8hu97","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8hu97","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo.json new file mode 100644 index 0000000..ab14678 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-hiyo","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"accessibilityRotor(_:entries:)","platforms":[{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"iOS"},{"introducedAt":"12.0","name":"macOS","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"name":"watchOS","beta":false}],"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entriesQrAA18LocalizedStringKeyV_qd__yctAA013AccessibilityE7ContentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-hiyo"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"labelKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityRotorContentBuilderV","text":"AccessibilityRotorContentBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI25AccessibilityRotorContentP","text":"AccessibilityRotorContent","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-hiyo":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-hiyo","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-hiyo","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"accessibilityRotor(_:entries:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s.json new file mode 100644 index 0000000..697c6f3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRotor(_:entries:entryID:entryLabel:)"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","text":"AccessibilitySystemRotor","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":">, "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","title":"accessibilityRotor(_:entries:entryID:entryLabel:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"systemRotor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","text":"AccessibilitySystemRotor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Hashable","preciseIdentifier":"s:SH"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":">, "},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"accessibilityRotor(_:entries:entryID:entryLabel:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz.json new file mode 100644 index 0000000..1923fb5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"rotorLabel"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"entryID","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:entryID:entryLabel:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false},{"name":"macOS","deprecated":false,"introducedAt":"12.0","unavailable":false,"beta":false},{"unavailable":false,"name":"tvOS","deprecated":false,"introducedAt":"15.0","beta":false},{"introducedAt":"8.0","beta":false,"unavailable":false,"deprecated":false,"name":"watchOS"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"accessibilityRotor(_:entries:entryID:entryLabel:)","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":">, "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol.json new file mode 100644 index 0000000..590b7aa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol"]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"kind":"text","text":", "},{"text":"EntryModel","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"rotorLabel"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"L"},{"text":" : ","kind":"text"},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Hashable","preciseIdentifier":"s:SH"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0","deprecated":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_qd_1_GAJyqd_0_SSGtSyRd__SHRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:entryID:entryLabel:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"entryID"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75.json new file mode 100644 index 0000000..6fd1f8d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries7entryID0G5LabelQrAA18LocalizedStringKeyV_Sayqd__Gs0L4PathCyqd__qd_0_GALyqd__SSGtSHRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false},{"name":"watchOS","introducedAt":"8.0","beta":false,"deprecated":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"ID"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityRotor(_:entries:entryID:entryLabel:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"rotorLabelKey","kind":"internalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Hashable","kind":"typeIdentifier","preciseIdentifier":"s:SH"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75":{"title":"accessibilityRotor(_:entries:entryID:entryLabel:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"kind":"text","text":": "},{"text":"KeyPath","preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo.json new file mode 100644 index 0000000..2a4afd1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-2gmuo"]}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-2gmuo","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"introducedAt":"12.0","beta":false,"unavailable":false},{"name":"tvOS","deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false},{"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"8.0","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA019AccessibilitySystemE0V_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityRotor(_:entries:entryLabel:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier","text":"AccessibilitySystemRotor"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"systemRotor","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","text":"AccessibilitySystemRotor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityRotor(_:entries:entryLabel:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-2gmuo":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"text":"AccessibilitySystemRotor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"accessibilityRotor(_:entries:entryLabel:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-2gmuo","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-2gmuo"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8.json new file mode 100644 index 0000000..e094b0e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"rotorLabel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"L"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"entryLabel"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"L","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:entryLabel:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-4v9g8"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-4v9g8"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"accessibilityRotor(_:entries:entryLabel:)","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrqd___Sayqd_0_Gs7KeyPathCyqd_0_SSGtSyRd__s12IdentifiableRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"8.0","name":"watchOS","deprecated":false,"beta":false}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-4v9g8":{"title":"accessibilityRotor(_:entries:entryLabel:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-4v9g8","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"L"},{"kind":"text","text":", "},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"L"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-4v9g8","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91.json new file mode 100644 index 0000000..02a5f17 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91.json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA4TextV_Sayqd__Gs7KeyPathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","introducedAt":"12.0","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"tvOS"},{"introducedAt":"8.0","unavailable":false,"beta":false,"deprecated":false,"name":"watchOS"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"accessibilityRotor(_:entries:entryLabel:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-5yu91"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"rotorLabel"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"text":"\n","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-5yu91"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:entryLabel:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-5yu91":{"abstract":[],"title":"accessibilityRotor(_:entries:entryLabel:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-5yu91","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-5yu91"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb.json new file mode 100644 index 0000000..2635280 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb.json @@ -0,0 +1 @@ +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"rotorLabelKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-7a5jb","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityRotor(_:entries:entryLabel:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_7entries10entryLabelQrAA18LocalizedStringKeyV_Sayqd__Gs0K4PathCyqd__SSGts12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"accessibilityRotor(_:entries:entryLabel:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"12.0","name":"macOS","beta":false},{"introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-7a5jb"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations","kind":"article","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","role":"collectionGroup","title":"View Implementations","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-7a5jb":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-7a5jb","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"accessibilityRotor(_:entries:entryLabel:)","role":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-7a5jb"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7.json new file mode 100644 index 0000000..e447c44 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"label","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRotor(_:textRanges:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3czt7"]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"role":"symbol","symbolKind":"method","title":"accessibilityRotor(_:textRanges:)","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"15.0","unavailable":false,"name":"iOS","deprecated":false},{"introducedAt":"12.0","unavailable":false,"deprecated":false,"beta":false,"name":"macOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS"},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"8.0","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA4TextV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"text":"textRanges","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV","text":"Index"},{"kind":"text","text":">]) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3czt7","interfaceLanguage":"swift"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-3czt7":{"title":"accessibilityRotor(_:textRanges:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3czt7","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"text":": [","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV","text":"Index"},{"text":">]) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3czt7","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74.json new file mode 100644 index 0000000..8f7ceb7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRotor(_:textRanges:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3ga74"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","extendedModule":"SwiftUI","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"12.0","unavailable":false},{"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"15.0","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"8.0"}],"role":"symbol","title":"accessibilityRotor(_:textRanges:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA18LocalizedStringKeyV_SaySnySS5IndexVGGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"labelKey","kind":"internalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"textRanges","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV","text":"Index"},{"text":">]) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3ga74"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-3ga74":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3ga74","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3ga74","kind":"symbol","title":"accessibilityRotor(_:textRanges:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf.json new file mode 100644 index 0000000..3a32db1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf.json @@ -0,0 +1 @@ +{"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"15.0"},{"deprecated":false,"name":"macOS","unavailable":false,"beta":false,"introducedAt":"12.0"},{"deprecated":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS","beta":false},{"name":"watchOS","deprecated":false,"beta":false,"introducedAt":"8.0","unavailable":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"(","kind":"text"},{"text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"textRanges","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:SS5IndexV"},{"text":">]) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"accessibilityRotor(_:textRanges:)","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrAA019AccessibilitySystemE0V_SaySnySS5IndexVGGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityRotor(_:textRanges:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"systemRotor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"textRanges"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:SS5IndexV","kind":"typeIdentifier"},{"text":">]) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-47ctf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-47ctf"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-47ctf":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-47ctf","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-47ctf","abstract":[],"title":"accessibilityRotor(_:textRanges:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"(","kind":"text"},{"text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"text":": [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj.json new file mode 100644 index 0000000..b651125 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj.json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"accessibilityRotor(_:textRanges:)","roleHeading":"Instance Method","role":"symbol","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityRotor_10textRangesQrqd___SaySnySS5IndexVGGtSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"L"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":", "},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:SS5IndexV","text":"Index","kind":"typeIdentifier"},{"text":">]) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-5onnj"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-5onnj","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityRotor(_:textRanges:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"label","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV","text":"Index"},{"text":">]) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-5onnj":{"role":"symbol","type":"topic","abstract":[],"title":"accessibilityRotor(_:textRanges:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-5onnj","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-5onnj"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:).json new file mode 100644 index 0000000..ca2f396 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","metadata":{"title":"accessibilityRotorEntry(id:in:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotorEntry"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","text":"ID","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","role":"symbol","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0","unavailable":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0","name":"watchOS"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE23accessibilityRotorEntry2id2inQrqd___AA9NamespaceV2IDVtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotorEntry(id:in:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityRotorEntry(id:in:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotorEntry"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"kind":"text","text":">("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"text":" ","kind":"text"},{"text":"namespace","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"ID","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotorentry(id:in:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotorEntry(id:in:)":{"title":"accessibilityRotorEntry(id:in:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotorentry(id:in:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotorEntry","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","kind":"typeIdentifier","text":"ID"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotorEntry(id:in:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:).json new file mode 100644 index 0000000..70f95c0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityScrollAction","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"accessibilityScrollAction(_:)","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"introducedAt":"6.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE25accessibilityScrollActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA4EdgeOcF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityScrollAction","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"handler","kind":"internalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityscrollaction(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityScrollAction(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityScrollAction(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityScrollAction(_:)":{"title":"accessibilityScrollAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityscrollaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityScrollAction","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityScrollAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer().json new file mode 100644 index 0000000..d0d3f3e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer().json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentViewerQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityShowsLargeContentViewer()","roleHeading":"Instance Method","role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityShowsLargeContentViewer","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"platforms":[{"beta":false,"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"15.0"},{"unavailable":false,"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false},{"deprecated":false,"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"15.0"},{"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"8.0","deprecated":false}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer()"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer()"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityShowsLargeContentViewer","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityShowsLargeContentViewer()"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityShowsLargeContentViewer()":{"title":"accessibilityShowsLargeContentViewer()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityShowsLargeContentViewer","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:).json new file mode 100644 index 0000000..8554ab3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityShowsLargeContentViewer","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"largeContentView","kind":"internalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer(_:)"]}],"metadata":{"symbolKind":"method","platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"12.0","deprecated":false,"beta":false,"unavailable":false,"name":"macOS"},{"beta":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS","deprecated":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityShowsLargeContentViewer"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(() -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE36accessibilityShowsLargeContentVieweryQrqd__yXEAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"accessibilityShowsLargeContentViewer(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityShowsLargeContentViewer(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityShowsLargeContentViewer(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityShowsLargeContentViewer"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer(_:)","title":"accessibilityShowsLargeContentViewer(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:).json new file mode 100644 index 0000000..03b8709 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilitySortPriority(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitysortpriority(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilitySortPriority(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilitySortPriority"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"sortPriority","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"14.0"},{"name":"macOS","introducedAt":"11.0","beta":false,"deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"14.0"},{"introducedAt":"7.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE25accessibilitySortPriorityyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","title":"accessibilitySortPriority(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilitySortPriority"},{"kind":"text","text":"("},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilitySortPriority(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitysortpriority(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilitySortPriority(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilitySortPriority","kind":"identifier"},{"kind":"text","text":"("},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilitySortPriority(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:).json new file mode 100644 index 0000000..463457f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityTextContentType"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"AccessibilityTextContentType","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28AccessibilityTextContentTypeV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["iOS"]}]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityTextContentType","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28AccessibilityTextContentTypeV","text":"AccessibilityTextContentType"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"accessibilityTextContentType(_:)","extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE28accessibilityTextContentTypeyAA08ModifiedF0VyxAA31AccessibilityAttachmentModifierVGAA0iefG0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"beta":false,"name":"macOS","introducedAt":"12.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"8.0"}]},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.accessibilityTextContentType(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitytextcontenttype(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityTextContentType(_:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityTextContentType(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityTextContentType","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28AccessibilityTextContentTypeV","text":"AccessibilityTextContentType","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityTextContentType(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitytextcontenttype(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityTextContentType(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk.json new file mode 100644 index 0000000..eeb117d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityValue"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"title":"accessibilityValue(_:)","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"14.0"},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"11.0"},{"deprecated":false,"beta":false,"name":"tvOS","unavailable":false,"introducedAt":"14.0"},{"introducedAt":"7.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"valueDescription"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-51sfk"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-51sfk"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityValue(_:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-51sfk":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-51sfk","role":"symbol","title":"accessibilityValue(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-51sfk","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra.json new file mode 100644 index 0000000..f1117c1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-5agra"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.accessibilityValue(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"valueKey"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-5agra","interfaceLanguage":"swift"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityValue","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","title":"accessibilityValue(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"14.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"name":"watchOS","introducedAt":"7.0","deprecated":false,"unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-5agra":{"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"type":"topic","role":"symbol","title":"accessibilityValue(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-5agra","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-5agra"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf.json new file mode 100644 index 0000000..e288943 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf.json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityValue"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"}],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-78lqf"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"SwiftUI","role":"symbol","title":"accessibilityValue(_:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"14.0"},{"deprecated":false,"beta":false,"name":"macOS","unavailable":false,"introducedAt":"11.0"},{"introducedAt":"14.0","deprecated":false,"name":"tvOS","unavailable":false,"beta":false},{"deprecated":false,"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"7.0"}],"externalID":"s:7SwiftUI4ViewPAAE18accessibilityValueyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-78lqf","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.accessibilityValue(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-78lqf":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-78lqf","kind":"symbol","title":"accessibilityValue(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-78lqf","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:).json new file mode 100644 index 0000000..c139974 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityZoomAction(_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityZoomAction","kind":"identifier"},{"kind":"text","text":"(("},{"text":"AccessibilityZoomGestureAction","preciseIdentifier":"s:7SwiftUI30AccessibilityZoomGestureActionV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE23accessibilityZoomActionyAA15ModifiedContentVyxAA31AccessibilityAttachmentModifierVGyAA0ie7GestureF0VcF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false,"name":"iOS"},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"16.0","unavailable":false,"deprecated":false},{"unavailable":false,"deprecated":false,"introducedAt":"9.0","name":"watchOS","beta":false}],"symbolKind":"method","title":"accessibilityZoomAction(_:)","extendedModule":"SwiftUI"},"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityzoomaction(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.accessibilityZoomAction(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityZoomAction","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"handler","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30AccessibilityZoomGestureActionV","text":"AccessibilityZoomGestureAction"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityZoomAction(_:)":{"title":"accessibilityZoomAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityzoomaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityZoomAction","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30AccessibilityZoomGestureActionV","text":"AccessibilityZoomGestureAction"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityZoomAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:).json new file mode 100644 index 0000000..8aa0ea9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:).json @@ -0,0 +1 @@ +{"deprecationSummary":[{"inlineContent":[{"type":"text","text":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead."}],"type":"paragraph"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"actionSheet"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"ActionSheet","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11actionSheet11isPresented7contentQrAA7BindingVySbG_AA06ActionE0VyXEtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"actionSheet"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"ActionSheet","preciseIdentifier":"s:7SwiftUI11ActionSheetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"actionSheet(isPresented:content:)","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecatedAt":"100000.0","name":"iOS","deprecated":false,"message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting::actions:)`instead.","introducedAt":"13.0","unavailable":false,"beta":false},{"beta":false,"unavailable":false,"name":"tvOS","deprecatedAt":"100000.0","message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead.","introducedAt":"13.0","deprecated":false},{"beta":false,"message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead.","name":"watchOS","deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","introducedAt":"6.0"},{"deprecated":false,"deprecatedAt":"100000.0","message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead.","name":"visionOS","unavailable":false,"introducedAt":"1.0","beta":false}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.actionSheet(isPresented:content:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(ispresented:content:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(isPresented:content:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/actionSheet(isPresented:content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"actionSheet","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV","text":"ActionSheet"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"actionSheet(isPresented:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(ispresented:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(isPresented:content:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:).json new file mode 100644 index 0000000..c74a37d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(item:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"actionSheet","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ActionSheetV","text":"ActionSheet","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE11actionSheet4item7contentQrAA7BindingVyqd__SgG_AA06ActionE0Vqd__XEts12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","title":"actionSheet(item:content:)","platforms":[{"deprecatedAt":"100000.0","message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting::actions:)`instead.","beta":false,"name":"iOS","unavailable":false,"introducedAt":"13.0","deprecated":false},{"name":"tvOS","introducedAt":"13.0","unavailable":false,"message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead.","beta":false,"deprecated":false,"deprecatedAt":"100000.0"},{"deprecated":false,"introducedAt":"6.0","deprecatedAt":"100000.0","message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead.","unavailable":false,"name":"watchOS","beta":false},{"introducedAt":"1.0","unavailable":false,"name":"visionOS","beta":false,"deprecatedAt":"100000.0","deprecated":false,"message":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead."}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"actionSheet","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"T"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV","text":"ActionSheet"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.actionSheet(item:content:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(item:content:)"},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"use `confirmationDialog(title:isPresented:titleVisibility:presenting:actions:)`instead."}],"type":"paragraph"}],"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/actionSheet(item:content:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"actionSheet"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"T","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ActionSheet","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(item:content:)","deprecated":true,"kind":"symbol","title":"actionSheet(item:content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(item:content:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8.json new file mode 100644 index 0000000..e0d9fd4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8.json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-1p9c8","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.alert(_:isPresented:actions:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-1p9c8"]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"unavailable":false,"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrqd___AA7BindingVySbGqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"alert(_:isPresented:actions:)","roleHeading":"Instance Method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-1p9c8":{"title":"alert(_:isPresented:actions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-1p9c8","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-1p9c8","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf.json new file mode 100644 index 0000000..57a5465 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.alert(_:isPresented:actions:)"},{"text":".","type":"text"}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-8nchf"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-8nchf"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"deprecated":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS","beta":false}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"alert(_:isPresented:actions:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-8nchf":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-8nchf","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-8nchf","kind":"symbol","title":"alert(_:isPresented:actions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn.json new file mode 100644 index 0000000..3725151 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn.json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-z4fn"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"alert(_:isPresented:actions:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actionsQrAA4TextV_AA7BindingVySbGqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0","unavailable":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0"}]},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-z4fn","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.alert(_:isPresented:actions:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations","kind":"article","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","role":"collectionGroup","title":"View Implementations","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-z4fn":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-z4fn","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-z4fn","title":"alert(_:isPresented:actions:)","role":"symbol","abstract":[],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om.json new file mode 100644 index 0000000..c149568 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.alert(_:isPresented:actions:message:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1u0om"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1u0om"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"alert(_:isPresented:actions:message:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA4TextV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"introducedAt":"8.0","unavailable":false,"deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-1u0om":{"title":"alert(_:isPresented:actions:message:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1u0om","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1u0om","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6.json new file mode 100644 index 0000000..6340610 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.alert(_:isPresented:actions:message:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1uhz6"},"metadata":{"title":"alert(_:isPresented:actions:message:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"iOS"},{"beta":false,"name":"macOS","introducedAt":"12.0","deprecated":false,"unavailable":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"8.0"}],"role":"symbol","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrqd___AA7BindingVySbGqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1uhz6"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-1uhz6":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1uhz6","role":"symbol","title":"alert(_:isPresented:actions:message:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1uhz6","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q.json new file mode 100644 index 0000000..11c4382 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-py9q"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.alert(_:isPresented:actions:message:)"},{"text":".","type":"text"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-py9q"},"kind":"symbol","metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","role":"symbol","title":"alert(_:isPresented:actions:message:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0"},{"introducedAt":"12.0","beta":false,"name":"macOS","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"8.0","name":"watchOS"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-py9q":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-py9q","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-py9q","type":"topic","title":"alert(_:isPresented:actions:message:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se.json new file mode 100644 index 0000000..2b43189 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-75se","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-75se"]}],"metadata":{"extendedModule":"SwiftUI","role":"symbol","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"12.0","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"15.0","unavailable":false,"deprecated":false},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"alert(_:isPresented:presenting:actions:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA4TextV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.alert(_:isPresented:presenting:actions:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-75se":{"type":"topic","role":"symbol","title":"alert(_:isPresented:presenting:actions:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-75se","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-75se","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi.json new file mode 100644 index 0000000..61471b9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi.json @@ -0,0 +1 @@ +{"metadata":{"symbolKind":"method","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"12.0","unavailable":false,"deprecated":false,"name":"macOS","beta":false},{"introducedAt":"15.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"alert(_:isPresented:presenting:actions:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-89yi"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-89yi","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.alert(_:isPresented:presenting:actions:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-89yi":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-89yi","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-89yi","title":"alert(_:isPresented:presenting:actions:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0.json new file mode 100644 index 0000000..431bc61 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-9pzr0","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-9pzr0"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.alert(_:isPresented:presenting:actions:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actionsQrqd___AA7BindingVySbGqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","title":"alert(_:isPresented:presenting:actions:)","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"12.0"},{"unavailable":false,"introducedAt":"15.0","name":"tvOS","beta":false,"deprecated":false},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"beta":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-9pzr0":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-9pzr0","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-9pzr0"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba.json new file mode 100644 index 0000000..716fab7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1kuba"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1kuba","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.alert(_:isPresented:presenting:actions:message:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","title":"alert(_:isPresented:presenting:actions:message:)","platforms":[{"beta":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"12.0"},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false}],"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrqd___AA7BindingVySbGqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-1kuba":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1kuba","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1kuba"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b.json new file mode 100644 index 0000000..dbdeb2a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b.json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1ky1b"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"alert(_:isPresented:presenting:actions:message:)","externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","beta":false,"introducedAt":"12.0","unavailable":false,"deprecated":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"beta":false,"unavailable":false,"introducedAt":"8.0","deprecated":false,"name":"watchOS"}]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.alert(_:isPresented:presenting:actions:message:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1ky1b"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-1ky1b":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1ky1b","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1ky1b"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy.json new file mode 100644 index 0000000..23422b6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-71jcy"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"M"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"metadata":{"symbolKind":"method","role":"symbol","title":"alert(_:isPresented:presenting:actions:message:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE5alert_11isPresented10presenting7actions7messageQrAA4TextV_AA7BindingVySbGqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"12.0","name":"macOS","unavailable":false,"beta":false},{"name":"tvOS","beta":false,"introducedAt":"15.0","unavailable":false,"deprecated":false},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.alert(_:isPresented:presenting:actions:message:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-71jcy","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-71jcy":{"title":"alert(_:isPresented:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-71jcy","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-71jcy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:).json new file mode 100644 index 0000000..d709f71 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:).json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.alert(isPresented:content:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:content:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"text":"Alert","preciseIdentifier":"s:7SwiftUI5AlertV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"metadata":{"platforms":[{"beta":false,"deprecatedAt":"100000.0","message":"use `alert(title:isPresented:presenting::actions:) instead.","name":"iOS","unavailable":false,"introducedAt":"13.0","deprecated":false},{"deprecated":false,"deprecatedAt":"100000.0","name":"macOS","message":"use `alert(title:isPresented:presenting::actions:) instead.","unavailable":false,"introducedAt":"10.15","beta":false},{"unavailable":false,"introducedAt":"13.0","deprecatedAt":"100000.0","name":"tvOS","deprecated":false,"beta":false,"message":"use `alert(title:isPresented:presenting::actions:) instead."},{"introducedAt":"6.0","message":"use `alert(title:isPresented:presenting::actions:) instead.","unavailable":false,"deprecated":false,"beta":false,"deprecatedAt":"100000.0","name":"watchOS"},{"message":"use `alert(title:isPresented:presenting::actions:) instead.","name":"visionOS","deprecated":false,"beta":false,"introducedAt":"1.0","unavailable":false,"deprecatedAt":"100000.0"}],"title":"alert(isPresented:content:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE5alert11isPresented7contentQrAA7BindingVySbG_AA5AlertVyXEtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Alert","preciseIdentifier":"s:7SwiftUI5AlertV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"use `alert(title:isPresented:presenting::actions:) instead."}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:content:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:content:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:content:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Alert","preciseIdentifier":"s:7SwiftUI5AlertV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"alert(isPresented:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:).json new file mode 100644 index 0000000..f639164 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.alert(isPresented:error:actions:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:10Foundation14LocalizedErrorP","text":"LocalizedError","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"E","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"error","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"alert(isPresented:error:actions:)","externalID":"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actionsQrAA7BindingVySbG_qd__Sgqd_0_yXEt10Foundation14LocalizedErrorRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"introducedAt":"12.0","unavailable":false,"deprecated":false,"beta":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"8.0","beta":false}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:error:actions:)":{"title":"alert(isPresented:error:actions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:).json new file mode 100644 index 0000000..540e1a0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.alert(isPresented:error:actions:message:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"LocalizedError","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14LocalizedErrorP"},{"kind":"text","text":", "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:message:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:message:)"]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"error"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"alert(isPresented:error:actions:message:)","platforms":[{"introducedAt":"15.0","name":"iOS","unavailable":false,"deprecated":false,"beta":false},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE5alert11isPresented5error7actions7messageQrAA7BindingVySbG_qd__Sgqd_0_qd__XEqd_1_qd__XEt10Foundation14LocalizedErrorRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:error:actions:message:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"alert(isPresented:error:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:message:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(item:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(item:content:).json new file mode 100644 index 0000000..3db5406 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alert(item:content:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.alert(item:content:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(item:content:)","interfaceLanguage":"swift"},"metadata":{"title":"alert(item:content:)","symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Item","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5AlertV","text":"Alert","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"platforms":[{"unavailable":false,"deprecated":false,"message":"use `alert(title:isPresented:presenting::actions:) instead.","deprecatedAt":"100000.0","introducedAt":"13.0","beta":false,"name":"iOS"},{"message":"use `alert(title:isPresented:presenting::actions:) instead.","name":"macOS","introducedAt":"10.15","deprecatedAt":"100000.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","message":"use `alert(title:isPresented:presenting::actions:) instead.","deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false},{"name":"watchOS","deprecated":false,"deprecatedAt":"100000.0","unavailable":false,"message":"use `alert(title:isPresented:presenting::actions:) instead.","introducedAt":"6.0","beta":false},{"message":"use `alert(title:isPresented:presenting::actions:) instead.","deprecated":false,"deprecatedAt":"100000.0","beta":false,"introducedAt":"1.0","name":"visionOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE5alert4item7contentQrAA7BindingVyqd__SgG_AA5AlertVqd__XEts12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Alert","preciseIdentifier":"s:7SwiftUI5AlertV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Item","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"deprecationSummary":[{"inlineContent":[{"text":"use `alert(title:isPresented:presenting::actions:) instead.","type":"text"}],"type":"paragraph"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alert(item:content:)"]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(item:content:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":"?>, "},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AlertV","text":"Alert"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","deprecated":true,"title":"alert(item:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(item:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(item:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v.json new file mode 100644 index 0000000..797df09 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alignmentGuide","kind":"identifier"},{"text":"(","kind":"text"},{"text":"HorizontalAlignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV"},{"kind":"text","text":", "},{"text":"computeValue","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"alignmentGuide(_:computeValue:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA19HorizontalAlignmentV_14CoreFoundation7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","introducedAt":"13.0","unavailable":false,"beta":false,"deprecated":false},{"deprecated":false,"introducedAt":"6.0","name":"watchOS","unavailable":false,"beta":false}]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.alignmentGuide(_:computeValue:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alignmentGuide"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"g","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"computeValue"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"ViewDimensions","preciseIdentifier":"s:7SwiftUI14ViewDimensionsV"},{"text":") -> ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-8fo7v"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-8fo7v"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alignmentGuide(_:computeValue:)-8fo7v":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-8fo7v","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-8fo7v","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alignmentGuide"},{"kind":"text","text":"("},{"text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"computeValue"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"alignmentGuide(_:computeValue:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz.json new file mode 100644 index 0000000..f902dcd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-92wpz","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alignmentGuide"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"g","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","text":"VerticalAlignment","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"computeValue"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"ViewDimensions","preciseIdentifier":"s:7SwiftUI14ViewDimensionsV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alignmentGuide","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","text":"VerticalAlignment"},{"kind":"text","text":", "},{"kind":"externalParam","text":"computeValue"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0","name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"6.0"}],"role":"symbol","title":"alignmentGuide(_:computeValue:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE14alignmentGuide_12computeValueQrAA17VerticalAlignmentV_14CoreFoundation7CGFloatVAA0C10DimensionsVctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.alignmentGuide(_:computeValue:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-92wpz"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alignmentGuide(_:computeValue:)-92wpz":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alignmentGuide"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VerticalAlignment","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV"},{"text":", ","kind":"text"},{"text":"computeValue","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"alignmentGuide(_:computeValue:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-92wpz","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-92wpz"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:).json new file mode 100644 index 0000000..97864f1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/alloweddynamicrange(_:)"]}],"metadata":{"platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"14.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"tvOS"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE19allowedDynamicRangeyQrAA5ImageV0eF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"allowedDynamicRange(_:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"allowedDynamicRange","kind":"identifier"},{"kind":"text","text":"("},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV12DynamicRangeV","text":"DynamicRange"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowedDynamicRange(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"allowedDynamicRange","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"range","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Image","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"DynamicRange","preciseIdentifier":"s:7SwiftUI5ImageV12DynamicRangeV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.allowedDynamicRange(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowedDynamicRange(_:)":{"title":"allowedDynamicRange(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alloweddynamicrange(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowedDynamicRange","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ImageV12DynamicRangeV","text":"DynamicRange","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowedDynamicRange(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:).json new file mode 100644 index 0000000..cbc8078 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.allowsHitTesting(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/allowshittesting(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"platforms":[{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"iOS"},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"10.15"},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"13.0","unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE16allowsHitTestingyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allowsHitTesting"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","title":"allowsHitTesting(_:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI"},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsHitTesting(_:)"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"allowsHitTesting","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"enabled","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowsHitTesting(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowsHitTesting","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"allowsHitTesting(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/allowshittesting(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsHitTesting(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:).json new file mode 100644 index 0000000..d653f57 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"allowsTightening","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"flag"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsTightening(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.allowsTightening(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"SwiftUI","symbolKind":"method","platforms":[{"deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false},{"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false}],"role":"symbol","title":"allowsTightening(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"allowsTightening"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE16allowsTighteningyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/allowstightening(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowsTightening(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsTightening(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/allowstightening(_:)","role":"symbol","title":"allowsTightening(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowsTightening","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:).json new file mode 100644 index 0000000..2a869bf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.anchorPreference(key:value:transform:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/anchorpreference(key:value:transform:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE16anchorPreference3key5value9transformQrqd_0_m_AA6AnchorV6SourceVyqd___G5ValueQyd_0_AIyqd__GctAA0E3KeyRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"anchorPreference","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"K"},{"kind":"text","text":">("},{"kind":"externalParam","text":"key"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"kind":"text","text":"<"},{"text":"A","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","text":"Source","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"transform"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI6AnchorV","text":"Anchor","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":">) -> ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false},{"deprecated":false,"unavailable":false,"introducedAt":"10.15","name":"macOS","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"deprecated":false,"introducedAt":"6.0","name":"watchOS","unavailable":false,"beta":false}],"title":"anchorPreference(key:value:transform:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/anchorPreference(key:value:transform:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"anchorPreference","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"key"},{"text":" ","kind":"text"},{"text":"_","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type = K.self, "},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":">.","kind":"text"},{"text":"Source","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"transform"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI6AnchorV","text":"Anchor","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"A"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","kind":"typeIdentifier","text":"PreferenceKey"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/anchorPreference(key:value:transform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"anchorPreference","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"K","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"key","kind":"externalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Anchor","preciseIdentifier":"s:7SwiftUI6AnchorV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"A","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"text":"Source","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV"},{"kind":"text","text":", "},{"text":"transform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":">) -> ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"anchorPreference(key:value:transform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/anchorpreference(key:value:transform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/anchorPreference(key:value:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:).json new file mode 100644 index 0000000..700c618 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:).json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:7SwiftUI4ViewPAAE9animationyQrAA9AnimationVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"13.0","unavailable":false,"name":"iOS","deprecatedAt":"15.0","deprecated":false,"message":"Use withAnimation or animation(_:value:) instead."},{"unavailable":false,"message":"Use withAnimation or animation(_:value:) instead.","deprecated":false,"deprecatedAt":"12.0","beta":false,"introducedAt":"10.15","name":"macOS"},{"name":"tvOS","deprecatedAt":"15.0","unavailable":false,"introducedAt":"13.0","message":"Use withAnimation or animation(_:value:) instead.","deprecated":false,"beta":false},{"deprecatedAt":"8.0","beta":false,"message":"Use withAnimation or animation(_:value:) instead.","deprecated":false,"introducedAt":"6.0","unavailable":false,"name":"watchOS"},{"deprecatedAt":"1.0","message":"Use withAnimation or animation(_:value:) instead.","deprecated":false,"beta":false,"unavailable":false,"name":"visionOS","introducedAt":"1.0"}],"role":"symbol","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"animation(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"animation","kind":"identifier"},{"kind":"text","text":"("},{"text":"Animation","preciseIdentifier":"s:7SwiftUI9AnimationV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"animation"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Animation","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use withAnimation or animation(_:value:) instead.","type":"text"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.animation(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:)","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","title":"animation(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:)","deprecated":true,"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:body:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:body:).json new file mode 100644 index 0000000..14b5fb8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:body:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"animation"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"Animation","preciseIdentifier":"s:7SwiftUI9AnimationV","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"body","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"animation(_:body:)","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"10.0"}],"externalID":"s:7SwiftUI4ViewPAAE9animation_4bodyQrAA9AnimationVSg_qd__AA018PlaceholderContentC0VyxGXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"animation","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"animation"},{"text":": ","kind":"text"},{"text":"Animation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"body","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.animation(_:body:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:body:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:body:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:body:)":{"kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:body:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Animation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"kind":"text","text":"?, "},{"text":"body","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"title":"animation(_:body:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:body:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:value:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:value:).json new file mode 100644 index 0000000..1d21d09 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/animation(_:value:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:value:)","interfaceLanguage":"swift"},"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"animation(_:value:)","externalID":"s:7SwiftUI4ViewPAAE9animation_5valueQrAA9AnimationVSg_qd__tSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"animation","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation"},{"kind":"text","text":"?, "},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"introducedAt":"13.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS"}],"role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.animation(_:value:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"animation"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"animation"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SQ","kind":"typeIdentifier","text":"Equatable"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:value:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:value:)","kind":"symbol","title":"animation(_:value:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:value:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv.json new file mode 100644 index 0000000..3dafbbc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-4l6lv"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"aspectRatio","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"text":"contentMode","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ContentModeO","text":"ContentMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":"("},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"text":", ","kind":"text"},{"text":"contentMode","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContentMode","preciseIdentifier":"s:7SwiftUI11ContentModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","title":"aspectRatio(_:contentMode:)","platforms":[{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15","name":"macOS"},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"deprecated":false,"introducedAt":"6.0","unavailable":false,"name":"watchOS","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQrSo6CGSizeV_AA07ContentG0OtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-4l6lv","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.aspectRatio(_:contentMode:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/aspectRatio(_:contentMode:)-4l6lv":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@S@CGSize","kind":"typeIdentifier","text":"CGSize"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentMode"},{"text":": ","kind":"text"},{"text":"ContentMode","preciseIdentifier":"s:7SwiftUI11ContentModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"aspectRatio(_:contentMode:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-4l6lv","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-4l6lv","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s.json new file mode 100644 index 0000000..e30efb8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"aspectRatio"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"contentMode"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ContentModeO","text":"ContentMode","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"aspectRatio"},{"text":"(","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"text":"contentMode","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI11ContentModeO","text":"ContentMode","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"aspectRatio(_:contentMode:)","platforms":[{"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false,"name":"macOS"},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"name":"watchOS","beta":false,"introducedAt":"6.0","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE11aspectRatio_11contentModeQr14CoreFoundation7CGFloatVSg_AA07ContentG0OtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-6tc4s"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-6tc4s"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.aspectRatio(_:contentMode:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/aspectRatio(_:contentMode:)-6tc4s":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-6tc4s","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-6tc4s","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"aspectRatio","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentMode"},{"kind":"text","text":": "},{"text":"ContentMode","preciseIdentifier":"s:7SwiftUI11ContentModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"aspectRatio(_:contentMode:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:).json new file mode 100644 index 0000000..1ded2eb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"autocapitalization","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"UITextAutocapitalizationType","preciseIdentifier":"c:@E@UITextAutocapitalizationType","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/autocapitalization(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocapitalization(_:)"},"metadata":{"title":"autocapitalization(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"autocapitalization"},{"kind":"text","text":"("},{"text":"UITextAutocapitalizationType","preciseIdentifier":"c:@E@UITextAutocapitalizationType","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18autocapitalizationyQrSo28UITextAutocapitalizationTypeVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"beta":false,"deprecated":false,"name":"iOS","deprecatedAt":"100000.0","introducedAt":"13.0","unavailable":false,"message":"use textInputAutocapitalization(_:)"},{"deprecatedAt":"100000.0","deprecated":false,"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false,"message":"use textInputAutocapitalization(_:)"},{"name":"visionOS","unavailable":false,"beta":false,"deprecated":false,"deprecatedAt":"100000.0","introducedAt":"1.0","message":"use textInputAutocapitalization(_:)"}]},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"use textInputAutocapitalization(_:)"}],"type":"paragraph"}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.autocapitalization(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/autocapitalization(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"autocapitalization"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@E@UITextAutocapitalizationType","kind":"typeIdentifier","text":"UITextAutocapitalizationType"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"autocapitalization(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/autocapitalization(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocapitalization(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:).json new file mode 100644 index 0000000..3bf334b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.autocorrectionDisabled(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"autocorrectionDisabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"disable"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"metadata":{"platforms":[{"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE22autocorrectionDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"autocorrectionDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"autocorrectionDisabled(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/autocorrectiondisabled(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocorrectionDisabled(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/autocorrectionDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/autocorrectiondisabled(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"autocorrectionDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocorrectionDisabled(_:)","kind":"symbol","title":"autocorrectionDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:).json new file mode 100644 index 0000000..266d9f0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:alignment:)"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.background(_:alignment:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:alignment:)"},"metadata":{"role":"symbol","platforms":[{"beta":false,"message":"Use `background(alignment:content:)` instead.","deprecated":false,"unavailable":false,"introducedAt":"13.0","deprecatedAt":"100000.0","name":"iOS"},{"beta":false,"deprecated":false,"deprecatedAt":"100000.0","name":"macOS","introducedAt":"10.15","unavailable":false,"message":"Use `background(alignment:content:)` instead."},{"message":"Use `background(alignment:content:)` instead.","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","name":"tvOS"},{"unavailable":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS","message":"Use `background(alignment:content:)` instead.","beta":false,"deprecatedAt":"100000.0"},{"deprecated":false,"beta":false,"name":"visionOS","introducedAt":"1.0","message":"Use `background(alignment:content:)` instead.","unavailable":false,"deprecatedAt":"100000.0"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE10background_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Background"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Background"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","title":"background(_:alignment:)"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Background"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"background","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Background"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":" = .center) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Background","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use `background(alignment:content:)` instead."}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:alignment:)":{"title":"background(_:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:alignment:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Background"},{"text":">(","kind":"text"},{"text":"Background","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:alignment:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:).json new file mode 100644 index 0000000..664ce06 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:ignoressafeareaedges:)"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.background(_:ignoresSafeAreaEdges:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"ignoresSafeAreaEdges"},{"text":" ","kind":"text"},{"text":"edges","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":" = .all) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:ignoresSafeAreaEdges:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"15.0","name":"tvOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE10background_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"background(_:ignoresSafeAreaEdges:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:ignoresSafeAreaEdges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:ignoressafeareaedges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:ignoresSafeAreaEdges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"background(_:ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03.json new file mode 100644 index 0000000..61ffba6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-15a03","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"15.0","unavailable":false},{"name":"macOS","beta":false,"introducedAt":"12.0","unavailable":false,"deprecated":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"role":"symbol","title":"background(_:in:fillStyle:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shape"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":" = FillStyle()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"Shape","preciseIdentifier":"s:7SwiftUI5ShapeP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.background(_:in:fillStyle:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-15a03"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:in:fillStyle:)-15a03":{"title":"background(_:in:fillStyle:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-15a03","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-15a03","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l.json new file mode 100644 index 0000000..1f79517 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l.json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"12.0","deprecated":false,"name":"macOS","unavailable":false,"beta":false},{"deprecated":false,"name":"tvOS","introducedAt":"15.0","unavailable":false,"beta":false},{"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","text":"FillStyle","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"background(_:in:fillStyle:)","externalID":"s:7SwiftUI4ViewPAAE10background_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA010InsettableI0Rd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-9sb3l","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.background(_:in:fillStyle:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":" ","kind":"text"},{"text":"shape","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier"},{"kind":"text","text":" = FillStyle()) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI15InsettableShapeP","kind":"typeIdentifier","text":"InsettableShape"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-9sb3l"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:in:fillStyle:)-9sb3l":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-9sb3l","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-9sb3l","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier","text":"FillStyle"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"background(_:in:fillStyle:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:).json new file mode 100644 index 0000000..b133903 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(alignment:content:)"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"background(alignment:content:)","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"name":"macOS","beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"15.0","beta":false,"deprecated":false},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE10background9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":" = .center, ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.background(alignment:content:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(alignment:content:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(alignment:content:)":{"title":"background(alignment:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(alignment:content:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(alignment:content:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:).json new file mode 100644 index 0000000..2b8d0d4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(ignoresSafeAreaEdges:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"kind":"text","text":"("},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"edges"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":" = .all) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(ignoressafeareaedges:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10background20ignoresSafeAreaEdgesQrAA4EdgeO3SetV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","extendedModule":"SwiftUI","title":"background(ignoresSafeAreaEdges:)","platforms":[{"beta":false,"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"8.0","unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.background(ignoresSafeAreaEdges:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(ignoresSafeAreaEdges:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"(","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"background(ignoresSafeAreaEdges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(ignoressafeareaedges:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb.json new file mode 100644 index 0000000..84f1925 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.background(in:fillStyle:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA15InsettableShapeRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"kind":"text","text":": "},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"unavailable":false,"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false},{"beta":false,"name":"tvOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","title":"background(in:fillStyle:)","extendedModule":"SwiftUI"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-5ukrb"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"in","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shape","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier","text":"FillStyle"},{"kind":"text","text":" = FillStyle()) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15InsettableShapeP","text":"InsettableShape"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-5ukrb","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(in:fillStyle:)-5ukrb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-5ukrb","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-5ukrb","kind":"symbol","title":"background(in:fillStyle:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl.json new file mode 100644 index 0000000..473df0c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.background(in:fillStyle:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-8t9nl","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-8t9nl"]}],"metadata":{"symbolKind":"method","title":"background(in:fillStyle:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE10background2in9fillStyleQrqd___AA04FillG0VtAA5ShapeRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0"},{"beta":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS"},{"name":"watchOS","beta":false,"introducedAt":"8.0","unavailable":false,"deprecated":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier","text":"FillStyle"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"in","kind":"externalParam"},{"kind":"text","text":" "},{"text":"shape","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"text":": ","kind":"text"},{"text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier"},{"text":" = FillStyle()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"Shape","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ShapeP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(in:fillStyle:)-8t9nl":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-8t9nl","title":"background(in:fillStyle:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-8t9nl"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:).json new file mode 100644 index 0000000..1ab7deb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"13.0"},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"13.0"},{"name":"watchOS","deprecated":false,"introducedAt":"6.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE25backgroundPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"backgroundPreferenceValue(_:_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"backgroundPreferenceValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Key","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Key"},{"text":".Type, (","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.backgroundPreferenceValue(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundPreferenceValue"},{"text":"<","kind":"text"},{"text":"Key","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"kind":"text","text":".Type = Key.self, "},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"transform"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"Key"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Key","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","text":"PreferenceKey"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundPreferenceValue(_:_:)":{"title":"backgroundPreferenceValue(_:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"backgroundPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Key"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:).json new file mode 100644 index 0000000..6637967 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:alignment:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"backgroundPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type, "},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"text":" = .center, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"transform"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","text":"PreferenceKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:alignment:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE25backgroundPreferenceValue_9alignment_Qrqd__m_AA9AlignmentVqd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"backgroundPreferenceValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"beta":false,"name":"tvOS","unavailable":false,"introducedAt":"16.0"},{"name":"watchOS","introducedAt":"9.0","unavailable":false,"deprecated":false,"beta":false}],"extendedModule":"SwiftUI","title":"backgroundPreferenceValue(_:alignment:_:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.backgroundPreferenceValue(_:alignment:_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundPreferenceValue(_:alignment:_:)":{"type":"topic","role":"symbol","title":"backgroundPreferenceValue(_:alignment:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:alignment:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"backgroundPreferenceValue"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", (","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:alignment:_:)","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:).json new file mode 100644 index 0000000..c375736 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundStyle(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.backgroundStyle(_:)"},{"text":".","type":"text"}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","kind":"typeIdentifier","text":"ShapeStyle"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE15backgroundStyleyQrqd__AA05ShapeE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"backgroundStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"backgroundStyle(_:)","platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"9.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}]},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundStyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"backgroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"backgroundStyle(_:)","role":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w.json new file mode 100644 index 0000000..bdbd100 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-5st6w","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badge"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"label","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-5st6w"]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE5badgeyQrAA4TextVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"unavailable":false,"name":"iOS","introducedAt":"15.0","beta":false,"deprecated":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0","beta":false}],"extendedModule":"SwiftUI","title":"badge(_:)"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.badge(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-5st6w":{"title":"badge(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-5st6w","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-5st6w","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2.json new file mode 100644 index 0000000..5a6ca6a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.badge(_:)"},{"type":"text","text":"."}],"metadata":{"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"12.0","name":"macOS"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","title":"badge(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE5badgeyQrSiF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"badge","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-6gpa2"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"badge","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"count"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-6gpa2"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-6gpa2":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-6gpa2","type":"topic","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-6gpa2","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badge"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd.json new file mode 100644 index 0000000..4634f98 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd.json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.badge(_:)"},{"text":".","type":"text"}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"12.0","beta":false}],"role":"symbol","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"badge(_:)","externalID":"s:7SwiftUI4ViewPAAE5badgeyQrAA18LocalizedStringKeyVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-7s4kd"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-7s4kd","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badge"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-7s4kd":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"badge"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-7s4kd","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-7s4kd"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q.json new file mode 100644 index 0000000..ebbbd8e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-8bw3q"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"badge"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"},{"kind":"text","text":"\n"}]}]}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"15.0","unavailable":false},{"unavailable":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE5badgeyQrqd__SgSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"badge(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badge"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-8bw3q","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.badge(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-8bw3q":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-8bw3q","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-8bw3q"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:).json new file mode 100644 index 0000000..35601de --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.badgeProminence(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/badgeprominence(_:)"]}],"metadata":{"roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"introducedAt":"14.0","unavailable":false,"name":"macOS","beta":false}],"extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE15badgeProminenceyQrAA05BadgeE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"badgeProminence(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badgeProminence"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BadgeProminence","preciseIdentifier":"s:7SwiftUI15BadgeProminenceV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"badgeProminence","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"prominence","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI15BadgeProminenceV","text":"BadgeProminence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badgeProminence(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badgeProminence(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badgeProminence"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BadgeProminence","preciseIdentifier":"s:7SwiftUI15BadgeProminenceV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"badgeProminence(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badgeprominence(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badgeProminence(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:).json new file mode 100644 index 0000000..7f9da5d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/baselineoffset(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.baselineOffset(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"baselineOffset","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"baselineOffset","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE14baselineOffsetyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"baselineOffset","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","title":"baselineOffset(_:)","extendedModule":"SwiftUI","platforms":[{"unavailable":false,"beta":false,"name":"iOS","deprecated":false,"introducedAt":"16.0"},{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"macOS","unavailable":false},{"introducedAt":"16.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"9.0","unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/baselineOffset(_:)"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/baselineOffset(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/baselineoffset(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/baselineOffset(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"baselineOffset","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"baselineOffset(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blendmode(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blendmode(_:).json new file mode 100644 index 0000000..b1447b9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blendmode(_:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"blendMode(_:)","externalID":"s:7SwiftUI4ViewPAAE9blendModeyQrAA05BlendE0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"blendMode"},{"kind":"text","text":"("},{"text":"BlendMode","preciseIdentifier":"s:7SwiftUI9BlendModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15","unavailable":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS"}],"role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"blendMode"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"blendMode"},{"text":": ","kind":"text"},{"text":"BlendMode","preciseIdentifier":"s:7SwiftUI9BlendModeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/blendmode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blendMode(_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.blendMode(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/blendMode(_:)":{"title":"blendMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/blendmode(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"blendMode"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9BlendModeO","text":"BlendMode"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blendMode(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:).json new file mode 100644 index 0000000..e54c181 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"blur"},{"kind":"text","text":"("},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"opaque"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = false) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"metadata":{"role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"blur"},{"text":"(","kind":"text"},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"opaque"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"blur(radius:opaque:)","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"10.15","unavailable":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"6.0"}],"externalID":"s:7SwiftUI4ViewPAAE4blur6radius6opaqueQr14CoreFoundation7CGFloatV_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blur(radius:opaque:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/blur(radius:opaque:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.blur(radius:opaque:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/blur(radius:opaque:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"text":"(","kind":"text"},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"opaque","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"blur(radius:opaque:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/blur(radius:opaque:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blur(radius:opaque:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/body.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/body.json new file mode 100644 index 0000000..24230dc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/body.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"body","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.body","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/body"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/body","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK"}],"externalID":"s:11PlaybackSDK18BitMovinPlayerViewV4bodyQrvp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"body","kind":"identifier"},{"text":": ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"body"},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/body":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/body","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/body","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"body"},{"text":": ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"body"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/bold(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/bold(_:).json new file mode 100644 index 0000000..141572f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/bold(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.bold(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/bold(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE4boldyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"bold(_:)","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0"},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false},{"name":"watchOS","introducedAt":"9.0","beta":false,"deprecated":false,"unavailable":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bold","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/bold(_:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"bold","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isActive","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/bold(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/bold(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"bold"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/bold(_:)","kind":"symbol","title":"bold(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/border(_:width:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/border(_:width:).json new file mode 100644 index 0000000..8ef67f0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/border(_:width:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"border","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"content"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"width","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":" = 1) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"border"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"width","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE6border_5widthQrqd___14CoreFoundation7CGFloatVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"border(_:width:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"10.15","name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"introducedAt":"6.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/border(_:width:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.border(_:width:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/border(_:width:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/border(_:width:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"border","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"border(_:width:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/border(_:width:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/border(_:width:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/brightness(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/brightness(_:).json new file mode 100644 index 0000000..88f6b61 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/brightness(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/brightness(_:)"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10brightnessyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"brightness(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"name":"macOS","unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"beta":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false,"name":"watchOS"}],"extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"brightness","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/brightness(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.brightness(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"brightness","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"amount"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sd","text":"Double"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/brightness(_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/brightness(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/brightness(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"brightness(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:).json new file mode 100644 index 0000000..b7f7377 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.buttonBorderShape(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/buttonbordershape(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"buttonBorderShape(_:)","externalID":"s:7SwiftUI4ViewPAAE17buttonBorderShapeyQrAA06ButtoneF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"buttonBorderShape"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17ButtonBorderShapeV","text":"ButtonBorderShape"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0","name":"iOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"12.0","name":"macOS"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonBorderShape(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"buttonBorderShape"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"shape"},{"text":": ","kind":"text"},{"text":"ButtonBorderShape","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17ButtonBorderShapeV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonBorderShape(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"buttonBorderShape","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ButtonBorderShape","preciseIdentifier":"s:7SwiftUI17ButtonBorderShapeV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"buttonBorderShape(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonbordershape(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonBorderShape(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:).json new file mode 100644 index 0000000..0a94410 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:).json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonRepeatBehavior(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/buttonrepeatbehavior(_:)"]}],"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE20buttonRepeatBehavioryQrAA06ButtoneF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"14.0","unavailable":false,"beta":false},{"name":"tvOS","introducedAt":"17.0","beta":false,"unavailable":false,"deprecated":false},{"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"10.0","deprecated":false}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"buttonRepeatBehavior","kind":"identifier"},{"kind":"text","text":"("},{"text":"ButtonRepeatBehavior","preciseIdentifier":"s:7SwiftUI20ButtonRepeatBehaviorV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"buttonRepeatBehavior(_:)","roleHeading":"Instance Method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.buttonRepeatBehavior(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"buttonRepeatBehavior"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"behavior","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20ButtonRepeatBehaviorV","kind":"typeIdentifier","text":"ButtonRepeatBehavior"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonRepeatBehavior(_:)":{"title":"buttonRepeatBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonrepeatbehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"buttonRepeatBehavior","kind":"identifier"},{"kind":"text","text":"("},{"text":"ButtonRepeatBehavior","preciseIdentifier":"s:7SwiftUI20ButtonRepeatBehaviorV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonRepeatBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s.json new file mode 100644 index 0000000..a6820c4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7bm2s"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ButtonStyleP","text":"ButtonStyle"},{"text":"\n","kind":"text"}]}]}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7bm2s"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"deprecated":false,"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"beta":false,"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false}],"title":"buttonStyle(_:)","role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA06ButtonE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.buttonStyle(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonStyle(_:)-7bm2s":{"title":"buttonStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7bm2s","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7bm2s","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k.json new file mode 100644 index 0000000..245a1ad --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7q62k","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.buttonStyle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"buttonStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"PrimitiveButtonStyle","preciseIdentifier":"s:7SwiftUI20PrimitiveButtonStyleP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"10.15","deprecated":false,"unavailable":false},{"introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"introducedAt":"6.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"title":"buttonStyle(_:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE11buttonStyleyQrqd__AA015PrimitiveButtonE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7q62k"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonStyle(_:)-7q62k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"buttonStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7q62k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7q62k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:).json new file mode 100644 index 0000000..3b78112 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"clipped"},{"kind":"text","text":"("},{"kind":"externalParam","text":"antialiased"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" = false) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipped(antialiased:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/clipped(antialiased:)"]}],"metadata":{"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"clipped(antialiased:)","extendedModule":"SwiftUI","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE7clipped11antialiasedQrSb_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"10.15","unavailable":false,"beta":false},{"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"name":"watchOS","unavailable":false,"introducedAt":"6.0","deprecated":false,"beta":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"clipped","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"antialiased"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.clipped(antialiased:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/clipped(antialiased:)":{"title":"clipped(antialiased:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/clipped(antialiased:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"clipped","kind":"identifier"},{"kind":"text","text":"("},{"text":"antialiased","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipped(antialiased:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:).json new file mode 100644 index 0000000..4faa09d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/clipshape(_:style:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipShape(_:style:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"clipShape","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shape","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"style","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"kind":"text","text":" = FillStyle()) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Shape","preciseIdentifier":"s:7SwiftUI5ShapeP"},{"kind":"text","text":"\n"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"13.0","unavailable":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"10.15","unavailable":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","beta":false,"introducedAt":"6.0","unavailable":false,"deprecated":false}],"role":"symbol","title":"clipShape(_:style:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"clipShape"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"style"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","text":"FillStyle","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE9clipShape_5styleQrqd___AA9FillStyleVtAA0E0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.clipShape(_:style:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/clipShape(_:style:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"clipShape"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"style","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"clipShape(_:style:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/clipshape(_:style:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipShape(_:style:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:).json new file mode 100644 index 0000000..196daef --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorEffect(_:isEnabled:)"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.colorEffect(_:isEnabled:)"},{"type":"text","text":"."}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/coloreffect(_:isenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"colorEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"shader","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"colorEffect(_:isEnabled:)","externalID":"s:7SwiftUI4ViewPAAE11colorEffect_9isEnabledQrAA6ShaderV_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorEffect"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"introducedAt":"17.0","unavailable":false,"name":"iOS","deprecated":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"macOS"},{"unavailable":false,"introducedAt":"17.0","name":"tvOS","beta":false,"deprecated":false}],"role":"symbol"},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorEffect(_:isEnabled:)":{"title":"colorEffect(_:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coloreffect(_:isenabled:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorEffect"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorEffect(_:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorinvert().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorinvert().json new file mode 100644 index 0000000..3b1dbf5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorinvert().json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.colorInvert()"},{"text":".","type":"text"}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0"},{"introducedAt":"10.15","unavailable":false,"beta":false,"deprecated":false,"name":"macOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"beta":false,"introducedAt":"6.0","name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","title":"colorInvert()","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorInvert"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE11colorInvertQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorInvert()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"colorInvert","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/colorinvert()"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorInvert()":{"title":"colorInvert()","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorInvert()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colorinvert()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorInvert"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:).json new file mode 100644 index 0000000..372649f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/colormultiply(_:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorMultiply"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"color"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","title":"colorMultiply(_:)","extendedModule":"SwiftUI","platforms":[{"introducedAt":"13.0","beta":false,"name":"iOS","unavailable":false,"deprecated":false},{"unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false,"name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"name":"watchOS","unavailable":false,"introducedAt":"6.0","deprecated":false,"beta":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE13colorMultiplyyQrAA5ColorVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"colorMultiply","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.colorMultiply(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorMultiply(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorMultiply(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colormultiply(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorMultiply(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorMultiply"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"colorMultiply(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:).json new file mode 100644 index 0000000..654d9e9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorScheme(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","sections":[],"metadata":{"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11colorSchemeyQrAA05ColorE0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"beta":false,"introducedAt":"13.0","unavailable":false,"deprecatedAt":"100000.0","name":"iOS","renamed":"preferredColorScheme(_:)"},{"introducedAt":"10.15","unavailable":false,"name":"macOS","beta":false,"renamed":"preferredColorScheme(_:)","deprecatedAt":"100000.0","deprecated":false},{"beta":false,"unavailable":false,"name":"tvOS","deprecated":false,"deprecatedAt":"100000.0","introducedAt":"13.0","renamed":"preferredColorScheme(_:)"},{"beta":false,"unavailable":false,"deprecated":false,"renamed":"preferredColorScheme(_:)","introducedAt":"6.0","name":"watchOS","deprecatedAt":"100000.0"},{"deprecatedAt":"100000.0","renamed":"preferredColorScheme(_:)","introducedAt":"1.0","beta":false,"name":"visionOS","deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","title":"colorScheme(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"colorScheme","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO","text":"ColorScheme"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorScheme"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"colorScheme","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ColorScheme","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.colorScheme(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/colorscheme(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorScheme(_:)":{"title":"colorScheme(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colorscheme(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"colorScheme","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ColorScheme","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorScheme(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/compositinggroup().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/compositinggroup().json new file mode 100644 index 0000000..2f1286f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/compositinggroup().json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/compositingGroup()","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/compositinggroup()"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.compositingGroup()"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"beta":false,"unavailable":false,"name":"tvOS","deprecated":false,"introducedAt":"13.0"},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE16compositingGroupQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"compositingGroup()","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compositingGroup","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"compositingGroup"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/compositingGroup()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compositingGroup"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"compositingGroup()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/compositinggroup()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/compositingGroup()"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49.json new file mode 100644 index 0000000..ecac966 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:)"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"platforms":[{"unavailable":false,"name":"iOS","introducedAt":"15.0","beta":false,"deprecated":false},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","unavailable":false,"introducedAt":"8.0","beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":" = .automatic, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs.json new file mode 100644 index 0000000..a44f254 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEtSyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"unavailable":false,"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"15.0","beta":false},{"name":"watchOS","beta":false,"introducedAt":"8.0","deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"kind":"text","text":", "},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1.json new file mode 100644 index 0000000..3d29668 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"introducedAt":"12.0","unavailable":false,"name":"macOS","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS"},{"deprecated":false,"introducedAt":"8.0","unavailable":false,"name":"watchOS","beta":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:)"},{"type":"text","text":"."}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic, "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9.json new file mode 100644 index 0000000..bae9c4b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9","interfaceLanguage":"swift"},"metadata":{"extendedModule":"SwiftUI","title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_0_yXEqd_1_yXEtSyRd__AaBRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"introducedAt":"12.0","beta":false,"unavailable":false,"name":"macOS","deprecated":false},{"beta":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS","unavailable":false},{"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":" = .automatic, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"kind":"text","text":": () -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c.json new file mode 100644 index 0000000..d645e2c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c.json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","platforms":[{"introducedAt":"15.0","deprecated":false,"name":"iOS","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0"},{"name":"tvOS","introducedAt":"15.0","beta":false,"deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"8.0","unavailable":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":" = .automatic, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"message"},{"kind":"text","text":": () -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c":{"title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2.json new file mode 100644 index 0000000..e2e219f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.confirmationDialog(_:isPresented:titleVisibility:actions:message:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"15.0","beta":false},{"unavailable":false,"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd__yXEqd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2":{"title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx.json new file mode 100644 index 0000000..cc91a08 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx.json @@ -0,0 +1 @@ +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" : "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"introducedAt":"15.0","unavailable":false,"name":"iOS","deprecated":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0","beta":false},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"15.0"},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"8.0"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1.json new file mode 100644 index 0000000..de1d7b0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"metadata":{"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","beta":false,"introducedAt":"12.0","unavailable":false,"deprecated":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"8.0"}],"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrqd___AA7BindingVySbGAA0I0Oqd_1_Sgqd_0_qd_1_XEtSyRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz.json new file mode 100644 index 0000000..a579bb3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false,"deprecated":false},{"beta":false,"introducedAt":"12.0","unavailable":false,"name":"macOS","deprecated":false},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"15.0","unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"8.0","beta":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actionsQrAA4TextV_AA7BindingVySbGAA0I0Oqd_0_Sgqd__qd_0_XEtAaBRd__r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al.json new file mode 100644 index 0000000..3bbc74e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","introducedAt":"15.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"name":"macOS","introducedAt":"12.0","deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"15.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"8.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA18LocalizedStringKeyV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al":{"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha.json new file mode 100644 index 0000000..b12535c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"M"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrAA4TextV_AA7BindingVySbGAA0I0Oqd_1_Sgqd__qd_1_XEqd_0_qd_1_XEtAaBRd__AaBRd_0_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"message"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1.json new file mode 100644 index 0000000..22c4caf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","externalID":"s:7SwiftUI4ViewPAAE18confirmationDialog_11isPresented15titleVisibility10presenting7actions7messageQrqd___AA7BindingVySbGAA0I0Oqd_2_Sgqd_0_qd_2_XEqd_1_qd_2_XEtSyRd__AaBRd_0_AaBRd_1_r2_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"introducedAt":"15.0","unavailable":false,"deprecated":false,"name":"iOS"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"12.0","name":"macOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"8.0","beta":false}],"role":"symbol"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1"]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1":{"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:).json new file mode 100644 index 0000000..a5f61c2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.containerBackground(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(_:for:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBackground"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"container"},{"kind":"text","text":": "},{"text":"ContainerBackgroundPlacement","preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","kind":"typeIdentifier","text":"ShapeStyle"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV","text":"ContainerBackgroundPlacement","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"containerBackground(_:for:)","externalID":"s:7SwiftUI4ViewPAAE19containerBackground_3forQrqd___AA09ContainerE9PlacementVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false},{"name":"macOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0"},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}],"symbolKind":"method","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerBackground(_:for:)":{"title":"containerBackground(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContainerBackgroundPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:).json new file mode 100644 index 0000000..96f3bca --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.containerBackground(for:alignment:content:)"},{"type":"text","text":"."}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE19containerBackground3for9alignment7contentQrAA09ContainerE9PlacementV_AA9AlignmentVqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerBackground"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV","text":"ContainerBackgroundPlacement","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","title":"containerBackground(for:alignment:content:)","symbolKind":"method","platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"name":"tvOS","introducedAt":"17.0","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"introducedAt":"10.0","unavailable":false,"name":"watchOS","beta":false}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(for:alignment:content:)"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"text":"container","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"ContainerBackgroundPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":" = .center, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(for:alignment:content:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerBackground(for:alignment:content:)":{"title":"containerBackground(for:alignment:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(for:alignment:content:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV","kind":"typeIdentifier","text":"ContainerBackgroundPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(for:alignment:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:).json new file mode 100644 index 0000000..0e7c54b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:).json @@ -0,0 +1 @@ +{"metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0","name":"iOS"},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0"},{"name":"watchOS","introducedAt":"10.0","beta":false,"deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE22containerRelativeFrame_9alignmentQrAA4AxisO3SetV_AA9AlignmentVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","title":"containerRelativeFrame(_:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerRelativeFrame","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"containerRelativeFrame","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"axes","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":" = .center) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.containerRelativeFrame(_:alignment:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:alignment:)":{"type":"topic","role":"symbol","title":"containerRelativeFrame(_:alignment:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"containerRelativeFrame"},{"kind":"text","text":"("},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:).json new file mode 100644 index 0000000..5f28146 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.containerRelativeFrame(_:alignment:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"containerRelativeFrame","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"axes"},{"text":": ","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"kind":"text","text":" = .center, "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"length"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","role":"symbol","title":"containerRelativeFrame(_:alignment:_:)","platforms":[{"name":"iOS","beta":false,"introducedAt":"17.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"14.0"},{"introducedAt":"17.0","beta":false,"unavailable":false,"deprecated":false,"name":"tvOS"},{"introducedAt":"10.0","name":"watchOS","beta":false,"deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"containerRelativeFrame"},{"kind":"text","text":"("},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE22containerRelativeFrame_9alignment_QrAA4AxisO3SetV_AA9AlignmentV14CoreFoundation7CGFloatVAN_AGtctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:_:)"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:alignment:_:)":{"title":"containerRelativeFrame(_:alignment:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"containerRelativeFrame","kind":"identifier"},{"kind":"text","text":"("},{"text":"Axis","preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":", ("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:).json new file mode 100644 index 0000000..069254e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE22containerRelativeFrame_5count4span7spacing9alignmentQrAA4AxisO3SetV_S2i14CoreFoundation7CGFloatVAA9AlignmentVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"containerRelativeFrame(_:count:span:spacing:alignment:)","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"17.0"},{"unavailable":false,"beta":false,"name":"macOS","introducedAt":"14.0","deprecated":false},{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0"}],"role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerRelativeFrame","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"count","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"span","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"spacing","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.containerRelativeFrame(_:count:span:spacing:alignment:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"containerRelativeFrame","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"axes"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"kind":"text","text":", "},{"text":"count","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"span"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":" = 1, ","kind":"text"},{"text":"spacing","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"text":" = .center) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:count:span:spacing:alignment:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:count:span:spacing:alignment:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:count:span:spacing:alignment:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerRelativeFrame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"span","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"spacing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"containerRelativeFrame(_:count:span:spacing:alignment:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:count:span:spacing:alignment:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:count:span:spacing:alignment:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containershape(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containershape(_:).json new file mode 100644 index 0000000..7c075d0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/containershape(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerShape(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.containerShape(_:)"},{"type":"text","text":"."}],"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE14containerShapeyQrqd__AA010InsettableE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"containerShape(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"containerShape"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"name":"macOS","introducedAt":"12.0","unavailable":false,"beta":false,"deprecated":false},{"name":"tvOS","introducedAt":"15.0","beta":false,"unavailable":false,"deprecated":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"8.0","unavailable":false}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/containershape(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"containerShape"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shape"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15InsettableShapeP","text":"InsettableShape"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerShape(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"containerShape","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containershape(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerShape(_:)","title":"containerShape(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato.json new file mode 100644 index 0000000..1153fec --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.contentMargins(_:_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-2nato"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-2nato","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentMargins"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"edges"},{"kind":"text","text":": "},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"text":" = .all, ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"insets"},{"kind":"text","text":": "},{"text":"EdgeInsets","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement","kind":"typeIdentifier"},{"text":" = .automatic) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contentMargins","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","text":"EdgeInsets"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"ContentMarginPlacement","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","title":"contentMargins(_:_:for:)","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"17.0"},{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"macOS","unavailable":false},{"unavailable":false,"name":"tvOS","deprecated":false,"beta":false,"introducedAt":"17.0"},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"10.0"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE14contentMargins__3forQrAA4EdgeO3SetV_AA0G6InsetsVAA22ContentMarginPlacementVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:_:for:)-2nato":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentMargins","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"EdgeInsets","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"contentMargins(_:_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-2nato","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-2nato","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9.json new file mode 100644 index 0000000..fab6a02 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9.json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contentMargins","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"text":".","kind":"text"},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"17.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"introducedAt":"17.0","unavailable":false,"beta":false},{"introducedAt":"10.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE14contentMargins__3forQrAA4EdgeO3SetV_14CoreFoundation7CGFloatVSgAA22ContentMarginPlacementVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"contentMargins(_:_:for:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-txh9"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.contentMargins(_:_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contentMargins","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"edges","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":" = .all, ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"length","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement","kind":"typeIdentifier"},{"text":" = .automatic) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-txh9"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:_:for:)-txh9":{"title":"contentMargins(_:_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-txh9","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentMargins","kind":"identifier"},{"kind":"text","text":"("},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"kind":"text","text":", "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContentMarginPlacement","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-txh9","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:).json new file mode 100644 index 0000000..dee4610 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:for:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contentMargins","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"length"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:for:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE14contentMargins_3forQr14CoreFoundation7CGFloatV_AA22ContentMarginPlacementVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"contentMargins(_:for:)","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"17.0"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"17.0","name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"10.0","beta":false}],"symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentMargins"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"ContentMarginPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.contentMargins(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:for:)":{"title":"contentMargins(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentMargins"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContentMarginPlacement","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:).json new file mode 100644 index 0000000..695c987 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:).json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentShape"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"kind","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ContentShapeKinds","preciseIdentifier":"s:7SwiftUI17ContentShapeKindsV"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shape","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eoFill"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = false) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Shape","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ShapeP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.contentShape(_:_:eoFill:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:_:eofill:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:_:eoFill:)"},"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE12contentShape__6eoFillQrAA07ContentE5KindsV_qd__SbtAA0E0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"contentShape(_:_:eoFill:)","platforms":[{"name":"iOS","introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0"},{"unavailable":false,"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentShape","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI17ContentShapeKindsV","text":"ContentShapeKinds","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"eoFill","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentShape(_:_:eoFill:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:_:eofill:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:_:eoFill:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentShape","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI17ContentShapeKindsV","kind":"typeIdentifier","text":"ContentShapeKinds"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"eoFill"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"contentShape(_:_:eoFill:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:).json new file mode 100644 index 0000000..5b859f1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentShape"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shape","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eoFill"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = false) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ShapeP","text":"Shape"},{"text":"\n","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:eofill:)"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.contentShape(_:eoFill:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:eoFill:)"},"metadata":{"title":"contentShape(_:eoFill:)","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contentShape"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"eoFill"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"platforms":[{"beta":false,"unavailable":false,"introducedAt":"13.0","name":"iOS","deprecated":false},{"deprecated":false,"introducedAt":"10.15","unavailable":false,"name":"macOS","beta":false},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"beta":false,"unavailable":false,"introducedAt":"6.0","deprecated":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE12contentShape_6eoFillQrqd___SbtAA0E0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentShape(_:eoFill:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:eofill:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contentShape","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eoFill"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"contentShape(_:eoFill:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:eoFill:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:).json new file mode 100644 index 0000000..40aaca4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentTransition"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17ContentTransitionV","text":"ContentTransition"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"contentTransition(_:)","externalID":"s:7SwiftUI4ViewPAAE17contentTransitionyQrAA07ContentE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"9.0","name":"watchOS"}],"extendedModule":"SwiftUI"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contentTransition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"transition"},{"kind":"text","text":": "},{"text":"ContentTransition","preciseIdentifier":"s:7SwiftUI17ContentTransitionV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contenttransition(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentTransition(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.contentTransition(_:)"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentTransition(_:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentTransition(_:)","type":"topic","kind":"symbol","abstract":[],"title":"contentTransition(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentTransition","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17ContentTransitionV","kind":"typeIdentifier","text":"ContentTransition"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contenttransition(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:).json new file mode 100644 index 0000000..8c14e6f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.contextMenu(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contextMenu"},{"text":"<","kind":"text"},{"text":"MenuItems","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"ContextMenu","preciseIdentifier":"s:7SwiftUI11ContextMenuV"},{"text":"<","kind":"text"},{"text":"MenuItems","kind":"typeIdentifier"},{"kind":"text","text":">?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","role":"symbol","title":"contextMenu(_:)","externalID":"s:7SwiftUI4ViewPAAE11contextMenuyQrAA07ContextE0Vyqd__GSgAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"unavailable":false,"message":"Use `contextMenu(menuItems:)` instead.","deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","name":"iOS","beta":false},{"message":"Use `contextMenu(menuItems:)` instead.","introducedAt":"10.15","deprecated":false,"beta":false,"unavailable":false,"name":"macOS","deprecatedAt":"100000.0"},{"deprecatedAt":"7.0","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"6.0","name":"watchOS"},{"beta":false,"deprecated":false,"name":"visionOS","message":"Use `contextMenu(menuItems:)` instead.","deprecatedAt":"100000.0","unavailable":false,"introducedAt":"1.0"}]},"kind":"symbol","deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use `contextMenu(menuItems:)` instead."}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"MenuItems"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"contextMenu"},{"kind":"text","text":": "},{"text":"ContextMenu","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ContextMenuV"},{"text":"<","kind":"text"},{"text":"MenuItems","kind":"typeIdentifier"},{"kind":"text","text":">?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"MenuItems"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contextMenu","kind":"identifier"},{"kind":"text","text":"<"},{"text":"MenuItems","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"ContextMenu","preciseIdentifier":"s:7SwiftUI11ContextMenuV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"MenuItems"},{"kind":"text","text":">?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(_:)","kind":"symbol","title":"contextMenu(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:).json new file mode 100644 index 0000000..4e6303f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"text":"<","kind":"text"},{"text":"I","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"forSelectionType"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"itemType"},{"text":": ","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"kind":"text","text":".Type = I.self, "},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"menu","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"I"},{"kind":"text","text":">) -> "},{"text":"M","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"primaryAction"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"text":"<","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")? = nil) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","sections":[],"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contextMenu"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"I"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"forSelectionType","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"text":"menu","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"primaryAction","kind":"externalParam"},{"text":": ((","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","platforms":[{"name":"iOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0"},{"unavailable":false,"introducedAt":"13.0","name":"macOS","beta":false,"deprecated":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11contextMenu16forSelectionType4menu13primaryActionQrqd__m_qd_0_Shyqd__GcyAHcSgtSHRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"contextMenu(forSelectionType:menu:primaryAction:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(forselectiontype:menu:primaryaction:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(forSelectionType:menu:primaryAction:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.contextMenu(forSelectionType:menu:primaryAction:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(forSelectionType:menu:primaryAction:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(forSelectionType:menu:primaryAction:)","type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(forselectiontype:menu:primaryaction:)","title":"contextMenu(forSelectionType:menu:primaryAction:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"I"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"forSelectionType"},{"kind":"text","text":": "},{"text":"I","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"menu"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"primaryAction","kind":"externalParam"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:).json new file mode 100644 index 0000000..928bac2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contextMenu"},{"kind":"text","text":"<"},{"text":"MenuItems","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"menuItems","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"MenuItems"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"MenuItems","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE11contextMenu9menuItemsQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","platforms":[{"introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"10.15","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"14.0","deprecated":false,"unavailable":false},{"introducedAt":"6.0","deprecatedAt":"7.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contextMenu","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"MenuItems"},{"kind":"text","text":">("},{"text":"menuItems","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"MenuItems","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","title":"contextMenu(menuItems:)","roleHeading":"Instance Method","role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.contextMenu(menuItems:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(menuItems:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contextMenu","kind":"identifier"},{"text":"<","kind":"text"},{"text":"MenuItems","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"menuItems"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"MenuItems"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"contextMenu(menuItems:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:).json new file mode 100644 index 0000000..debe532 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"contextMenu(menuItems:preview:)","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false,"name":"iOS"},{"introducedAt":"13.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"name":"tvOS","deprecated":false,"introducedAt":"16.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE11contextMenu9menuItems7previewQrqd__yXE_qd_0_yXEtAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contextMenu","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"M"},{"text":", ","kind":"text"},{"text":"P","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"menuItems","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:preview:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.contextMenu(menuItems:preview:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contextMenu"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"M"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"P"},{"text":">(","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"menuItems","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"M","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": () -> "},{"text":"P","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":", "},{"text":"P","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:preview:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(menuItems:preview:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"P","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"menuItems"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"P"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"contextMenu(menuItems:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:preview:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:preview:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contrast(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contrast(_:).json new file mode 100644 index 0000000..59608da --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/contrast(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.contrast(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/contrast(_:)"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contrast","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"amount","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE8contrastyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contrast"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false,"beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"6.0"}],"title":"contrast(_:)","role":"symbol","extendedModule":"SwiftUI","symbolKind":"method"},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contrast(_:)","interfaceLanguage":"swift"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contrast(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contrast"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"contrast(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contrast(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contrast(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:).json new file mode 100644 index 0000000..b88a7fd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/controlgroupstyle(_:)"]}],"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.controlGroupStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlGroupStyle(_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"controlGroupStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ControlGroupStyle","preciseIdentifier":"s:7SwiftUI17ControlGroupStyleP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0"},{"beta":false,"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"17.0"}],"externalID":"s:7SwiftUI4ViewPAAE17controlGroupStyleyQrqd__AA07ControleF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"controlGroupStyle(_:)","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"controlGroupStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/controlGroupStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/controlgroupstyle(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"controlGroupStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlGroupStyle(_:)","kind":"symbol","title":"controlGroupStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlsize(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlsize(_:).json new file mode 100644 index 0000000..773102c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/controlsize(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"controlSize","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"controlSize","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ControlSizeO","text":"ControlSize","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlSize(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.controlSize(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/controlsize(_:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE11controlSizeyQrAA07ControlE0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"controlSize"},{"text":"(","kind":"text"},{"text":"ControlSize","preciseIdentifier":"s:7SwiftUI11ControlSizeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","role":"symbol","title":"controlSize(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"10.15","name":"macOS"},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/controlSize(_:)":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlSize(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/controlsize(_:)","type":"topic","title":"controlSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"controlSize"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ControlSizeO","text":"ControlSize","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:).json new file mode 100644 index 0000000..a79ebb8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:).json @@ -0,0 +1 @@ +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"coordinateSpace"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"name","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"NamedCoordinateSpace","preciseIdentifier":"s:7SwiftUI20NamedCoordinateSpaceV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.coordinateSpace(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"coordinateSpace(_:)","externalID":"s:7SwiftUI4ViewPAAE15coordinateSpaceyQrAA015NamedCoordinateE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"coordinateSpace","kind":"identifier"},{"text":"(","kind":"text"},{"text":"NamedCoordinateSpace","preciseIdentifier":"s:7SwiftUI20NamedCoordinateSpaceV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"deprecated":false,"introducedAt":"17.0","name":"iOS","unavailable":false,"beta":false},{"introducedAt":"14.0","beta":false,"name":"macOS","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"17.0","deprecated":false,"unavailable":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.0"}],"symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/coordinateSpace(_:)":{"title":"coordinateSpace(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"coordinateSpace","kind":"identifier"},{"kind":"text","text":"("},{"text":"NamedCoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20NamedCoordinateSpaceV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:).json new file mode 100644 index 0000000..ff3f059 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"use coordinateSpace(_:) instead"}]}],"sections":[],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE15coordinateSpace4nameQrqd___tSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"coordinateSpace(name:)","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"coordinateSpace","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","platforms":[{"beta":false,"message":"use coordinateSpace(_:) instead","name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"deprecatedAt":"100000.0"},{"name":"macOS","introducedAt":"10.15","unavailable":false,"beta":false,"message":"use coordinateSpace(_:) instead","deprecatedAt":"100000.0","deprecated":false},{"unavailable":false,"message":"use coordinateSpace(_:) instead","deprecated":false,"deprecatedAt":"100000.0","beta":false,"name":"tvOS","introducedAt":"13.0"},{"unavailable":false,"introducedAt":"6.0","deprecated":false,"message":"use coordinateSpace(_:) instead","deprecatedAt":"100000.0","name":"watchOS","beta":false},{"unavailable":false,"beta":false,"name":"visionOS","message":"use coordinateSpace(_:) instead","deprecated":false,"deprecatedAt":"100000.0","introducedAt":"1.0"}],"symbolKind":"method","roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"coordinateSpace"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"name"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(name:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(name:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.coordinateSpace(name:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/coordinateSpace(name:)":{"abstract":[],"type":"topic","kind":"symbol","title":"coordinateSpace(name:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(name:)","deprecated":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"coordinateSpace","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(name:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:).json new file mode 100644 index 0000000..d81c6cd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cornerRadius"},{"kind":"text","text":"("},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"antialiased","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"cornerRadius(_:antialiased:)","platforms":[{"beta":false,"deprecated":false,"deprecatedAt":"100000.0","name":"iOS","introducedAt":"13.0","unavailable":false,"message":"Use `clipShape` or `fill` instead."},{"beta":false,"name":"macOS","introducedAt":"10.15","unavailable":false,"deprecated":false,"message":"Use `clipShape` or `fill` instead.","deprecatedAt":"100000.0"},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"deprecatedAt":"100000.0","message":"Use `clipShape` or `fill` instead.","introducedAt":"13.0"},{"introducedAt":"6.0","deprecatedAt":"100000.0","deprecated":false,"beta":false,"message":"Use `clipShape` or `fill` instead.","name":"watchOS","unavailable":false},{"beta":false,"message":"Use `clipShape` or `fill` instead.","deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","name":"visionOS","introducedAt":"1.0"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12cornerRadius_11antialiasedQr14CoreFoundation7CGFloatV_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"cornerRadius"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"radius"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"antialiased","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/cornerradius(_:antialiased:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/cornerRadius(_:antialiased:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.cornerRadius(_:antialiased:)"},{"text":".","type":"text"}],"deprecationSummary":[{"inlineContent":[{"text":"Use `clipShape` or `fill` instead.","type":"text"}],"type":"paragraph"}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/cornerRadius(_:antialiased:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cornerRadius"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"antialiased"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"cornerRadius(_:antialiased:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/cornerradius(_:antialiased:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/cornerRadius(_:antialiased:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:).json new file mode 100644 index 0000000..41f7315 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.datePickerStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/datePickerStyle(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"datePickerStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"DatePickerStyle","preciseIdentifier":"s:7SwiftUI15DatePickerStyleP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE15datePickerStyleyQrqd__AA04DateeF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"datePickerStyle(_:)","platforms":[{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS"},{"unavailable":false,"introducedAt":"10.0","name":"watchOS","beta":false,"deprecated":false}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"datePickerStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/datepickerstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/datePickerStyle(_:)":{"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"datePickerStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"datePickerStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/datepickerstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/datePickerStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations","abstract":[],"kind":"article","title":"View Implementations","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","role":"collectionGroup","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:).json new file mode 100644 index 0000000..d87fb9e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.defaultAppStorage(_:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultAppStorage"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSUserDefaults","text":"UserDefaults","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"11.0"},{"beta":false,"name":"tvOS","introducedAt":"14.0","deprecated":false,"unavailable":false},{"introducedAt":"7.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"defaultAppStorage(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE17defaultAppStorageyQrSo14NSUserDefaultsCF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/defaultappstorage(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"defaultAppStorage","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"store"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSUserDefaults","text":"UserDefaults","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultAppStorage(_:)"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultAppStorage(_:)":{"title":"defaultAppStorage(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultappstorage(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultAppStorage"},{"kind":"text","text":"("},{"text":"UserDefaults","preciseIdentifier":"c:objc(cs)NSUserDefaults","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultAppStorage(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:).json new file mode 100644 index 0000000..54939ce --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultFocus(_:_:priority:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultFocus"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"FocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":">."},{"text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI30DefaultFocusEvaluationPriorityV","text":"DefaultFocusEvaluationPriority","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0","name":"iOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"13.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"16.0"},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"9.0"}],"externalID":"s:7SwiftUI4ViewPAAE12defaultFocus__8priorityQrAA0E5StateV7BindingVyqd___G_qd__AA07DefaultE18EvaluationPriorityVtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"defaultFocus(_:_:priority:)"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.defaultFocus(_:_:priority:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"defaultFocus","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"binding"},{"text":": ","kind":"text"},{"text":"FocusState","preciseIdentifier":"s:7SwiftUI10FocusStateV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":">."},{"preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30DefaultFocusEvaluationPriorityV","text":"DefaultFocusEvaluationPriority"},{"kind":"text","text":" = .automatic) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/defaultfocus(_:_:priority:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultFocus(_:_:priority:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultFocus"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"priority","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DefaultFocusEvaluationPriority","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30DefaultFocusEvaluationPriorityV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"defaultFocus(_:_:priority:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultfocus(_:_:priority:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultFocus(_:_:priority:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:).json new file mode 100644 index 0000000..6880b13 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultHoverEffect(_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.defaultHoverEffect(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"defaultHoverEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"effect","kind":"internalParam"},{"kind":"text","text":": "},{"text":"HoverEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/defaulthovereffect(_:)"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE18defaultHoverEffectyQrAA0eF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","title":"defaultHoverEffect(_:)","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"17.0"},{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"visionOS","introducedAt":"1.0"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"defaultHoverEffect","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV","text":"HoverEffect"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultHoverEffect(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaulthovereffect(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultHoverEffect(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultHoverEffect"},{"text":"(","kind":"text"},{"text":"HoverEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"defaultHoverEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:).json new file mode 100644 index 0000000..a48f816 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.defaultScrollAnchor(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultScrollAnchor(_:)"},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"17.0","name":"iOS","unavailable":false,"deprecated":false,"beta":false},{"introducedAt":"14.0","name":"macOS","unavailable":false,"beta":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false,"name":"tvOS"},{"introducedAt":"10.0","beta":false,"name":"watchOS","unavailable":false,"deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultScrollAnchor"},{"kind":"text","text":"("},{"text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE19defaultScrollAnchoryQrAA9UnitPointVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"defaultScrollAnchor(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/defaultscrollanchor(_:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultScrollAnchor"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"anchor","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultScrollAnchor(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultscrollanchor(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"defaultScrollAnchor","kind":"identifier"},{"kind":"text","text":"("},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultScrollAnchor(_:)","kind":"symbol","title":"defaultScrollAnchor(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:).json new file mode 100644 index 0000000..fdf18aa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"defersSystemGestures(on:)","externalID":"s:7SwiftUI4ViewPAAE20defersSystemGestures2onQrAA4EdgeO3SetV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"defersSystemGestures","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"on"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"16.0","name":"iOS"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"defersSystemGestures","kind":"identifier"},{"kind":"text","text":"("},{"text":"on","kind":"externalParam"},{"kind":"text","text":" "},{"text":"edges","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.defersSystemGestures(on:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defersSystemGestures(on:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/deferssystemgestures(on:)"]}],"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defersSystemGestures(on:)":{"title":"defersSystemGestures(on:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/deferssystemgestures(on:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"defersSystemGestures","kind":"identifier"},{"kind":"text","text":"("},{"text":"on","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defersSystemGestures(on:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:).json new file mode 100644 index 0000000..335600b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE14deleteDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"deleteDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS","unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"6.0","deprecated":false}],"title":"deleteDisabled(_:)","symbolKind":"method","roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.deleteDisabled(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"deleteDisabled"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isDisabled"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/deletedisabled(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/deleteDisabled(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/deleteDisabled(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/deleteDisabled(_:)","title":"deleteDisabled(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/deletedisabled(_:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"deleteDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:).json new file mode 100644 index 0000000..885e0e7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dialogicon(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogIcon(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogIcon"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"icon","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.dialogIcon(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"17.0","deprecated":false,"unavailable":false},{"name":"macOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0"},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}],"role":"symbol","title":"dialogIcon(_:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dialogIcon"},{"kind":"text","text":"("},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE10dialogIconyQrAA5ImageVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogIcon(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogicon(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogIcon(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogIcon"},{"text":"(","kind":"text"},{"text":"Image","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"dialogIcon(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9.json new file mode 100644 index 0000000..7dbaf7b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9.json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dialogSuppressionToggle","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","introducedAt":"10.0","unavailable":false,"beta":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE23dialogSuppressionToggle_12isSuppressedQrAA18LocalizedStringKeyV_AA7BindingVySbGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"dialogSuppressionToggle(_:isSuppressed:)","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isSuppressed","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-28av9"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.dialogSuppressionToggle(_:isSuppressed:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-28av9"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-28av9":{"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-28av9","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-28av9","title":"dialogSuppressionToggle(_:isSuppressed:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dialogSuppressionToggle","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw.json new file mode 100644 index 0000000..eba8412 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dialogSuppressionToggle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"kind":"text","text":"\n"}]}]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dialogSuppressionToggle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSuppressed"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"introducedAt":"17.0","name":"tvOS","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"10.0","unavailable":false,"deprecated":false,"name":"watchOS","beta":false}],"extendedModule":"SwiftUI","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE23dialogSuppressionToggle_12isSuppressedQrqd___AA7BindingVySbGtSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"dialogSuppressionToggle(_:isSuppressed:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-2lazw"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-2lazw","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.dialogSuppressionToggle(_:isSuppressed:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-2lazw":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-2lazw","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-2lazw","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"dialogSuppressionToggle(_:isSuppressed:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5.json new file mode 100644 index 0000000..e339865 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-99pj5"},"metadata":{"extendedModule":"SwiftUI","title":"dialogSuppressionToggle(_:isSuppressed:)","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"name":"macOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"17.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE23dialogSuppressionToggle_12isSuppressedQrAA4TextV_AA7BindingVySbGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dialogSuppressionToggle","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isSuppressed"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.dialogSuppressionToggle(_:isSuppressed:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dialogSuppressionToggle"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"label"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-99pj5"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-99pj5":{"title":"dialogSuppressionToggle(_:isSuppressed:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-99pj5","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dialogSuppressionToggle","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isSuppressed","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-99pj5","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:).json new file mode 100644 index 0000000..009cf7c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(issuppressed:)"]}],"metadata":{"platforms":[{"introducedAt":"17.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"14.0","name":"macOS"},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE23dialogSuppressionToggle12isSuppressedQrAA7BindingVySbG_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dialogSuppressionToggle","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuppressed"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"dialogSuppressionToggle(isSuppressed:)"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(isSuppressed:)","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.dialogSuppressionToggle(isSuppressed:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(isSuppressed:)":{"title":"dialogSuppressionToggle(isSuppressed:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(issuppressed:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(isSuppressed:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"("},{"text":"isSuppressed","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:).json new file mode 100644 index 0000000..eba2850 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"disableAutocorrection"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"disable","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/disableautocorrection(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.disableAutocorrection(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"disableAutocorrection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","platforms":[{"deprecated":false,"renamed":"autocorrectionDisabled(_:)","unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0","deprecatedAt":"100000.0"},{"name":"macOS","introducedAt":"10.15","renamed":"autocorrectionDisabled(_:)","deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","beta":false},{"deprecatedAt":"100000.0","name":"tvOS","introducedAt":"13.0","beta":false,"deprecated":false,"renamed":"autocorrectionDisabled(_:)","unavailable":false},{"deprecated":false,"renamed":"autocorrectionDisabled(_:)","unavailable":false,"introducedAt":"8.0","deprecatedAt":"100000.0","beta":false,"name":"watchOS"},{"deprecated":false,"renamed":"autocorrectionDisabled(_:)","introducedAt":"1.0","beta":false,"unavailable":false,"deprecatedAt":"100000.0","name":"visionOS"}],"externalID":"s:7SwiftUI4ViewPAAE21disableAutocorrectionyQrSbSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"disableAutocorrection(_:)","symbolKind":"method"},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disableAutocorrection(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disableAutocorrection(_:)":{"deprecated":true,"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"disableAutocorrection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"disableAutocorrection(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disableautocorrection(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disableAutocorrection(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disabled(_:).json new file mode 100644 index 0000000..f267f96 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disabled(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disabled(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.disabled(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"10.15","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE8disabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"disabled(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"disabled"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"disabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"disabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/disabled(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disabled(_:)":{"title":"disabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"disabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:).json new file mode 100644 index 0000000..dd2179f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"disclosureGroupStyle(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"disclosureGroupStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20disclosureGroupStyleyQrqd__AA010DisclosureeF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"16.0"},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"}]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/disclosuregroupstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"disclosureGroupStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"DisclosureGroupStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20DisclosureGroupStyleP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disclosureGroupStyle(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.disclosureGroupStyle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disclosureGroupStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"disclosureGroupStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"disclosureGroupStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disclosuregroupstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disclosureGroupStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:).json new file mode 100644 index 0000000..4d8bc77 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/distortionEffect(_:maxSampleOffset:isEnabled:)"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distortionEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shader","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Shader","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6ShaderV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSampleOffset"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@S@CGSize","text":"CGSize","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/distortioneffect(_:maxsampleoffset:isenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"distortionEffect(_:maxSampleOffset:isEnabled:)","externalID":"s:7SwiftUI4ViewPAAE16distortionEffect_15maxSampleOffset9isEnabledQrAA6ShaderV_So6CGSizeVSbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"distortionEffect","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"maxSampleOffset","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGSize","preciseIdentifier":"c:@S@CGSize","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"unavailable":false,"introducedAt":"14.0","name":"macOS","beta":false,"deprecated":false},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"17.0"}],"role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.distortionEffect(_:maxSampleOffset:isEnabled:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/distortionEffect(_:maxSampleOffset:isEnabled:)":{"title":"distortionEffect(_:maxSampleOffset:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/distortioneffect(_:maxsampleoffset:isenabled:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distortionEffect","kind":"identifier"},{"kind":"text","text":"("},{"text":"Shader","preciseIdentifier":"s:7SwiftUI6ShaderV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSampleOffset"},{"text":": ","kind":"text"},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/distortionEffect(_:maxSampleOffset:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:).json new file mode 100644 index 0000000..b5e447e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.draggable(_:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"draggable"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"introducedAt":"16.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"draggable(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE9draggableyQrqd__yXA16CoreTransferable0F0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"draggable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"payload"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable"},{"kind":"text","text":"\n"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/draggable(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"draggable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(() -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:)","kind":"symbol","title":"draggable(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:).json new file mode 100644 index 0000000..ad38358 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"draggable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"payload","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"attribute","text":"@autoclosure "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"preview"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"title":"draggable(_:preview:)","roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"draggable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0","name":"iOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"13.0"}],"externalID":"s:7SwiftUI4ViewPAAE9draggable_7previewQrqd_0_yXA_qd__yXEtAaBRd__16CoreTransferable0G0Rd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:preview:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.draggable(_:preview:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:preview:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/draggable(_:preview:)":{"abstract":[],"title":"draggable(_:preview:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:preview:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"draggable"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(() -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:preview:)","kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:).json new file mode 100644 index 0000000..8d321e9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"drawingGroup","kind":"identifier"},{"text":"(","kind":"text"},{"text":"opaque","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"kind":"externalParam","text":"colorMode"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18ColorRenderingModeO","text":"ColorRenderingMode"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"drawingGroup(opaque:colorMode:)","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"name":"macOS","unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false},{"introducedAt":"13.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"name":"watchOS","beta":false,"introducedAt":"6.0","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE12drawingGroup6opaque9colorModeQrSb_AA014ColorRenderingH0OtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.drawingGroup(opaque:colorMode:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/drawingGroup(opaque:colorMode:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drawingGroup"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"opaque"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = false, ","kind":"text"},{"kind":"externalParam","text":"colorMode"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18ColorRenderingModeO","kind":"typeIdentifier","text":"ColorRenderingMode"},{"kind":"text","text":" = .nonLinear) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/drawinggroup(opaque:colormode:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/drawingGroup(opaque:colorMode:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/drawinggroup(opaque:colormode:)","role":"symbol","title":"drawingGroup(opaque:colorMode:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/drawingGroup(opaque:colorMode:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"drawingGroup","kind":"identifier"},{"kind":"text","text":"("},{"text":"opaque","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"colorMode"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18ColorRenderingModeO","text":"ColorRenderingMode"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:).json new file mode 100644 index 0000000..0a475a5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dropDestination(for:action:isTargeted:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dropdestination(for:action:istargeted:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.dropDestination(for:action:isTargeted:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","platforms":[{"name":"iOS","introducedAt":"16.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE15dropDestination3for6action10isTargetedQrqd__m_SbSayqd__G_So7CGPointVtcySbct16CoreTransferable0L0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"dropDestination(for:action:isTargeted:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropDestination","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"action"},{"kind":"text","text":": (["},{"text":"T","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"CGPoint","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"isTargeted","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropDestination"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"payloadType","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":".Type = T.self, ","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" (["},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isTargeted"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":" = { _ in }) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dropDestination(for:action:isTargeted:)":{"title":"dropDestination(for:action:isTargeted:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dropdestination(for:action:istargeted:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dropDestination","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"action"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"], ","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isTargeted"},{"text":": (","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dropDestination(for:action:isTargeted:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4.json new file mode 100644 index 0000000..ad7386d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4.json @@ -0,0 +1 @@ +{"metadata":{"title":"dynamicTypeSize(_:)","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE15dynamicTypeSizeyQrqd__SXRd__AA07DynamiceF0O5BoundRtd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0"},{"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"8.0","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dynamicTypeSize","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-4v6j4","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dynamicTypeSize","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"range","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"RangeExpression","preciseIdentifier":"s:SX"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Bound"},{"text":" == ","kind":"text"},{"text":"DynamicTypeSize","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15DynamicTypeSizeO"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.dynamicTypeSize(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-4v6j4"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dynamicTypeSize(_:)-4v6j4":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-4v6j4","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dynamicTypeSize"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-4v6j4","kind":"symbol","title":"dynamicTypeSize(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy.json new file mode 100644 index 0000000..7ed23fa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-8zqiy"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dynamicTypeSize","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"size","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15DynamicTypeSizeO","text":"DynamicTypeSize"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE15dynamicTypeSizeyQrAA07DynamiceF0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","deprecated":false,"introducedAt":"12.0","beta":false,"unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"8.0","beta":false}],"title":"dynamicTypeSize(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dynamicTypeSize"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15DynamicTypeSizeO","text":"DynamicTypeSize","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.dynamicTypeSize(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-8zqiy","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dynamicTypeSize(_:)-8zqiy":{"title":"dynamicTypeSize(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-8zqiy","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dynamicTypeSize","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI15DynamicTypeSizeO","kind":"typeIdentifier","text":"DynamicTypeSize"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-8zqiy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:).json new file mode 100644 index 0000000..0a5e895 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","platforms":[{"introducedAt":"13.0","deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"name":"iOS","message":"Use ignoresSafeArea(_:edges:) instead.","beta":false},{"deprecated":false,"message":"Use ignoresSafeArea(_:edges:) instead.","deprecatedAt":"100000.0","introducedAt":"10.15","beta":false,"unavailable":false,"name":"macOS"},{"message":"Use ignoresSafeArea(_:edges:) instead.","introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false,"deprecated":false,"name":"tvOS","beta":false},{"introducedAt":"6.0","message":"Use ignoresSafeArea(_:edges:) instead.","unavailable":false,"deprecatedAt":"100000.0","beta":false,"deprecated":false,"name":"watchOS"},{"beta":false,"deprecatedAt":"100000.0","message":"Use ignoresSafeArea(_:edges:) instead.","name":"visionOS","unavailable":false,"introducedAt":"1.0","deprecated":false}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE21edgesIgnoringSafeAreayQrAA4EdgeO3SetVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"edgesIgnoringSafeArea"},{"kind":"text","text":"("},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"edgesIgnoringSafeArea(_:)","extendedModule":"SwiftUI","symbolKind":"method"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.edgesIgnoringSafeArea(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"edgesIgnoringSafeArea","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"edges"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/edgesIgnoringSafeArea(_:)"},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use ignoresSafeArea(_:edges:) instead.","type":"text"}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/edgesignoringsafearea(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/edgesIgnoringSafeArea(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/edgesignoringsafearea(_:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/edgesIgnoringSafeArea(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"edgesIgnoringSafeArea"},{"text":"(","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"edgesIgnoringSafeArea(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:).json new file mode 100644 index 0000000..37cc681 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:)"},"metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11environmentyQrqd__SgRld__C11Observation10ObservableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"environment(_:)","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"macOS"},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"17.0"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"10.0","beta":false}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.environment(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"environment"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : AnyObject, ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Observable","kind":"typeIdentifier","preciseIdentifier":"s:11Observation10ObservableP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environment(_:)":{"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:)","title":"environment(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:_:).json new file mode 100644 index 0000000..fbcfa6f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environment(_:_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"keyPath","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"text":"EnvironmentValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"environment","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"text":"EnvironmentValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"environment(_:_:)","symbolKind":"method","platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"beta":false,"introducedAt":"10.15","deprecated":false,"name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"introducedAt":"6.0","deprecated":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE11environmentyQrs15WritableKeyPathCyAA17EnvironmentValuesVqd__G_qd__tlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.environment(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environment(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"kind":"text","text":"<"},{"text":"EnvironmentValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":">, "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"environment(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:).json new file mode 100644 index 0000000..a017014 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"environmentObject(_:)","externalID":"s:7SwiftUI4ViewPAAE17environmentObjectyQrqd__7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"environmentObject"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"10.15","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS"}],"role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environmentObject(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"environmentObject"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine16ObservableObjectP","text":"ObservableObject"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/environmentobject(_:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.environmentObject(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environmentObject(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environmentobject(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environmentObject(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"environmentObject"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"environmentObject(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:).json new file mode 100644 index 0000000..69b98d8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileDialogBrowserOptions(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogBrowserOptions(_:)","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"17.0","unavailable":false,"beta":false},{"name":"macOS","introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false}],"title":"fileDialogBrowserOptions(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogBrowserOptions","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI24FileDialogBrowserOptionsV","text":"FileDialogBrowserOptions","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE24fileDialogBrowserOptionsyQrAA04FileefG0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogBrowserOptions","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"options","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"FileDialogBrowserOptions","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24FileDialogBrowserOptionsV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogbrowseroptions(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogBrowserOptions(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogbrowseroptions(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogBrowserOptions"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"FileDialogBrowserOptions","preciseIdentifier":"s:7SwiftUI24FileDialogBrowserOptionsV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogBrowserOptions(_:)","kind":"symbol","title":"fileDialogBrowserOptions(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5.json new file mode 100644 index 0000000..6e397f5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-4sto5","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogConfirmationLabel","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"fileDialogConfirmationLabel(_:)","platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"unavailable":false,"introducedAt":"14.0","name":"macOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE27fileDialogConfirmationLabelyQrAA4TextVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileDialogConfirmationLabel(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-4sto5"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-4sto5":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-4sto5","type":"topic","kind":"symbol","title":"fileDialogConfirmationLabel(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogConfirmationLabel","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-4sto5","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7.json new file mode 100644 index 0000000..7d129f7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-7gjj7","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"labelKey"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-7gjj7"]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"fileDialogConfirmationLabel(_:)","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE27fileDialogConfirmationLabelyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"17.0","beta":false,"name":"iOS","unavailable":false,"deprecated":false},{"name":"macOS","beta":false,"introducedAt":"14.0","deprecated":false,"unavailable":false}]},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileDialogConfirmationLabel(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-7gjj7":{"title":"fileDialogConfirmationLabel(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-7gjj7","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-7gjj7","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp.json new file mode 100644 index 0000000..851391d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.fileDialogConfirmationLabel(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-9hjrp"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-9hjrp"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogConfirmationLabel","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"label","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogConfirmationLabel","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE27fileDialogConfirmationLabelyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false}],"symbolKind":"method","roleHeading":"Instance Method","title":"fileDialogConfirmationLabel(_:)","extendedModule":"SwiftUI"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-9hjrp":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","role":"symbol","title":"fileDialogConfirmationLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-9hjrp","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-9hjrp"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:).json new file mode 100644 index 0000000..8f12c4c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogCustomizationID(_:)"},"sections":[],"kind":"symbol","metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogCustomizationID","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"fileDialogCustomizationID(_:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE25fileDialogCustomizationIDyQrSSF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false,"name":"iOS"},{"introducedAt":"14.0","name":"macOS","unavailable":false,"beta":false,"deprecated":false}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileDialogCustomizationID(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogCustomizationID","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"id","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogcustomizationid(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogCustomizationID(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogCustomizationID(_:)","kind":"symbol","title":"fileDialogCustomizationID(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogcustomizationid(_:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileDialogCustomizationID","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:).json new file mode 100644 index 0000000..15ad798 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.fileDialogDefaultDirectory(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogdefaultdirectory(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"14.0"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE26fileDialogDefaultDirectoryyQr10Foundation3URLVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogDefaultDirectory","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"fileDialogDefaultDirectory(_:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogDefaultDirectory(_:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogDefaultDirectory","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"defaultDirectory"},{"kind":"text","text":": "},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogDefaultDirectory(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogdefaultdirectory(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogDefaultDirectory"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogDefaultDirectory(_:)","kind":"symbol","title":"fileDialogDefaultDirectory(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:).json new file mode 100644 index 0000000..ad74c05 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogImportsUnresolvedAliases"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"fileDialogImportsUnresolvedAliases(_:)","platforms":[{"beta":false,"introducedAt":"17.0","unavailable":false,"name":"iOS","deprecated":false},{"beta":false,"unavailable":false,"name":"macOS","deprecated":false,"introducedAt":"14.0"}],"externalID":"s:7SwiftUI4ViewPAAE34fileDialogImportsUnresolvedAliasesyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogimportsunresolvedaliases(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileDialogImportsUnresolvedAliases(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogImportsUnresolvedAliases(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogImportsUnresolvedAliases","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"imports"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogImportsUnresolvedAliases(_:)":{"kind":"symbol","title":"fileDialogImportsUnresolvedAliases(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogimportsunresolvedaliases(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogImportsUnresolvedAliases(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogImportsUnresolvedAliases","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n.json new file mode 100644 index 0000000..8ecf051 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileDialogMessage(_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-2ip4n","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileDialogMessage","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"messageKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-2ip4n"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogMessage","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE17fileDialogMessageyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"fileDialogMessage(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","platforms":[{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"17.0","name":"iOS"},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"}]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-2ip4n":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-2ip4n","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogMessage","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-2ip4n","title":"fileDialogMessage(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6.json new file mode 100644 index 0000000..7d73e50 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-67rn6"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"14.0"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogMessage","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"fileDialogMessage(_:)","extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE17fileDialogMessageyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileDialogMessage(_:)"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogMessage"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"message"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-67rn6"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-67rn6":{"title":"fileDialogMessage(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-67rn6","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogMessage","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-67rn6","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u.json new file mode 100644 index 0000000..a4d1cac --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-dd3u"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileDialogMessage(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE17fileDialogMessageyQrAA4TextVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogMessage"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"introducedAt":"17.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"}],"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","title":"fileDialogMessage(_:)","extendedModule":"SwiftUI"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogMessage"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"message"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-dd3u","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-dd3u":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-dd3u","type":"topic","title":"fileDialogMessage(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogMessage"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-dd3u","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:).json new file mode 100644 index 0000000..2fb7102 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogURLEnabled"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"}],"symbolKind":"method","extendedModule":"SwiftUI","title":"fileDialogURLEnabled(_:)","externalID":"s:7SwiftUI4ViewPAAE20fileDialogURLEnabledyQr10Foundation9PredicateVyAE3URLV_QPGF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileDialogURLEnabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Predicate","preciseIdentifier":"s:10Foundation9PredicateV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogurlenabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogURLEnabled(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileDialogURLEnabled(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogURLEnabled(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogURLEnabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Predicate","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"fileDialogURLEnabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogurlenabled(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogURLEnabled(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp.json new file mode 100644 index 0000000..37f4eee --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA21ReferenceFileDocumentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"11.0","name":"macOS","beta":false,"deprecated":false}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"defaultFilename"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"document"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":", ","kind":"text"},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"D","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"ReferenceFileDocument","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ReferenceFileDocumentP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"document"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":"?, "},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko.json new file mode 100644 index 0000000..03c825b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":", ","kind":"text"},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI12FileDocumentP","text":"FileDocument","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document11contentType15defaultFilename12onCompletionQrAA7BindingVySbG_qd__Sg07UniformJ11Identifiers6UTTypeVSSSgys6ResultOy10Foundation3URLVs5Error_pGctAA12FileDocumentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"document"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"kind":"text","text":", "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"kind":"text","text":", "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx.json new file mode 100644 index 0000000..0a26c03 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"document"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"text":"?, ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"] = [], "},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":" = {}) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"FileDocument","preciseIdentifier":"s:7SwiftUI12FileDocumentP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"17.0"},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false}],"role":"symbol","title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"document"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":"?, ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"defaultFilename"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document12contentTypes15defaultFilename12onCompletion0M12CancellationQrAA7BindingVySbG_qd__SgSay22UniformTypeIdentifiers6UTTypeVGSSSgys6ResultOy10Foundation3URLVs5Error_pGcyyctAA12FileDocumentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx":{"title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"defaultFilename"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li.json new file mode 100644 index 0000000..751ac44 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":"?, "},{"text":"contentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"kind":"text","text":"] = [], "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":" = {}) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"D"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ReferenceFileDocument","preciseIdentifier":"s:7SwiftUI21ReferenceFileDocumentP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"metadata":{"platforms":[{"name":"iOS","introducedAt":"17.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"14.0","unavailable":false,"name":"macOS","deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"contentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":"], ","kind":"text"},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","role":"symbol","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented8document12contentTypes15defaultFilename12onCompletion0M12CancellationQrAA7BindingVySbG_qd__SgSay22UniformTypeIdentifiers6UTTypeVGSSSgys6ResultOy10Foundation3URLVs5Error_pGcyyctAA21ReferenceFileDocumentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li":{"abstract":[],"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"document","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":"?, ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"defaultFilename"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li","kind":"symbol","title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd.json new file mode 100644 index 0000000..f4eabad --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"contentType","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"], "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Collection","preciseIdentifier":"s:Sl"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12FileDocumentP","text":"FileDocument"},{"kind":"text","text":"\n"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd"]}],"kind":"symbol","metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"fileExporter(isPresented:documents:contentType:onCompletion:)","symbolKind":"method","platforms":[{"name":"iOS","beta":false,"introducedAt":"14.0","deprecated":false,"unavailable":false},{"introducedAt":"11.0","name":"macOS","unavailable":false,"deprecated":false,"beta":false}],"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier","text":"URL"},{"text":"], ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA12FileDocument7ElementRpd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileExporter(isPresented:documents:contentType:onCompletion:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd":{"title":"fileExporter(isPresented:documents:contentType:onCompletion:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<["},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz.json new file mode 100644 index 0000000..27d19bb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"contentType","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCompletion","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<[","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Collection","kind":"typeIdentifier","preciseIdentifier":"s:Sl"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"ReferenceFileDocument","preciseIdentifier":"s:7SwiftUI21ReferenceFileDocumentP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents11contentType12onCompletionQrAA7BindingVySbG_qd__07UniformJ11Identifiers6UTTypeVys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AA21ReferenceFileDocument7ElementRpd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":", ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<["},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"14.0","unavailable":false},{"name":"macOS","beta":false,"introducedAt":"11.0","unavailable":false,"deprecated":false}],"title":"fileExporter(isPresented:documents:contentType:onCompletion:)"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileExporter(isPresented:documents:contentType:onCompletion:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":", ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz","title":"fileExporter(isPresented:documents:contentType:onCompletion:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m.json new file mode 100644 index 0000000..49e6d1c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":", ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"] = [], "},{"kind":"externalParam","text":"onCompletion"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":" = {}) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sl","text":"Collection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12FileDocumentP","text":"FileDocument"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","metadata":{"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"14.0"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier","text":"URL"},{"text":"], ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","role":"symbol","title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)","externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents12contentTypes12onCompletion0K12CancellationQrAA7BindingVySbG_qd__Say22UniformTypeIdentifiers6UTTypeVGys6ResultOySay10Foundation3URLVGs5Error_pGcyyctSlRd__AA12FileDocument7ElementRpd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh.json new file mode 100644 index 0000000..712b3e4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":", ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"] = [], ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":"], ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":" = {}) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Collection","preciseIdentifier":"s:Sl"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":" : "},{"text":"ReferenceFileDocument","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ReferenceFileDocumentP"},{"kind":"text","text":"\n"}]}]}],"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"contentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<["},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"14.0"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented9documents12contentTypes12onCompletion0K12CancellationQrAA7BindingVySbG_qd__Say22UniformTypeIdentifiers6UTTypeVGys6ResultOySay10Foundation3URLVGs5Error_pGcyyctSlRd__AA21ReferenceFileDocument7ElementRpd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh","type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh","kind":"symbol","title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json new file mode 100644 index 0000000..45ad7ea --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"item","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"] = [], ","kind":"text"},{"kind":"externalParam","text":"defaultFilename"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":" = { }) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented4item12contentTypes15defaultFilename12onCompletion0M12CancellationQrAA7BindingVySbG_qd__SgSay22UniformTypeIdentifiers6UTTypeVGSSSgys6ResultOy10Foundation3URLVs5Error_pGcyyct16CoreTransferable0Z0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"item"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":"], ","kind":"text"},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method","platforms":[{"beta":false,"name":"iOS","introducedAt":"17.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"14.0","name":"macOS"}],"title":"fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json new file mode 100644 index 0000000..945618a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"items","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"] = [], "},{"text":"onCompletion","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<[","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":" = { }) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"Collection","preciseIdentifier":"s:Sl","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"Transferable","kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12fileExporter11isPresented5items12contentTypes12onCompletion0K12CancellationQrAA7BindingVySbG_qd__Say22UniformTypeIdentifiers6UTTypeVGys6ResultOySay10Foundation3URLVGs5Error_pGcyyctSlRd__16CoreTransferable0X0Rd_0_7ElementQyd__Rsd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"items","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"contentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"name":"iOS","introducedAt":"17.0"},{"unavailable":false,"deprecated":false,"introducedAt":"14.0","name":"macOS","beta":false}],"roleHeading":"Instance Method","title":"fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","role":"symbol"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"items"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"contentTypes"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq.json new file mode 100644 index 0000000..39d94da --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporterFilenameLabel"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"label","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-7pleq"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileExporterFilenameLabel(_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-7pleq"},"metadata":{"roleHeading":"Instance Method","role":"symbol","title":"fileExporterFilenameLabel(_:)","externalID":"s:7SwiftUI4ViewPAAE25fileExporterFilenameLabelyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"beta":false,"name":"macOS","introducedAt":"14.0","deprecated":false,"unavailable":false}]},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-7pleq":{"title":"fileExporterFilenameLabel(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-7pleq","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-7pleq","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re.json new file mode 100644 index 0000000..230405d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re.json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE25fileExporterFilenameLabelyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false},{"name":"macOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false}],"title":"fileExporterFilenameLabel(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"labelKey","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-8t5re"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-8t5re"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.fileExporterFilenameLabel(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-8t5re":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-8t5re","kind":"symbol","abstract":[],"title":"fileExporterFilenameLabel(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-8t5re"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k.json new file mode 100644 index 0000000..5493040 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k.json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-ij1k"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","role":"symbol","platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"17.0"},{"deprecated":false,"beta":false,"name":"macOS","unavailable":false,"introducedAt":"14.0"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"fileExporterFilenameLabel(_:)","externalID":"s:7SwiftUI4ViewPAAE25fileExporterFilenameLabelyQrAA4TextVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileExporterFilenameLabel(_:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-ij1k"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"label"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-ij1k":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporterFilenameLabel"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-ij1k","role":"symbol","abstract":[],"title":"fileExporterFilenameLabel(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-ij1k"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json new file mode 100644 index 0000000..9805b36 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes23allowsMultipleSelection12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGSbys6ResultOySay10Foundation3URLVGs5Error_pGctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileImporter","kind":"identifier"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"allowedContentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<["},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS","unavailable":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileImporter","kind":"identifier"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"allowedContentTypes"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"allowsMultipleSelection"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"allowedContentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)","abstract":[],"role":"symbol","type":"topic","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json new file mode 100644 index 0000000..e19385f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileImporter"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"allowedContentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"allowsMultipleSelection"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes23allowsMultipleSelection12onCompletion0N12CancellationQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGSbys6ResultOySay10Foundation3URLVGs5Error_pGcyyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"17.0"},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"14.0","unavailable":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileImporter"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"allowedContentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"allowedContentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json new file mode 100644 index 0000000..e859d7a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileImporter(isPresented:allowedContentTypes:onCompletion:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE12fileImporter11isPresented19allowedContentTypes12onCompletionQrAA7BindingVySbG_Say22UniformTypeIdentifiers6UTTypeVGys6ResultOy10Foundation3URLVs5Error_pGctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileImporter","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"allowedContentTypes"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"11.0","beta":false}],"roleHeading":"Instance Method","title":"fileImporter(isPresented:allowedContentTypes:onCompletion:)","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:onCompletion:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileImporter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"allowedContentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":", "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:onCompletion:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:onCompletion:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"allowedContentTypes"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"kind":"text","text":"], "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"fileImporter(isPresented:allowedContentTypes:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:).json new file mode 100644 index 0000000..003e329 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileMover(isPresented:file:onCompletion:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"file"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:)"},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"fileMover(isPresented:file:onCompletion:)","externalID":"s:7SwiftUI4ViewPAAE9fileMover11isPresented0D012onCompletionQrAA7BindingVySbG_10Foundation3URLVSgys6ResultOyAMs5Error_pGctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileMover"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"file"},{"text":": ","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"14.0"},{"beta":false,"introducedAt":"11.0","unavailable":false,"deprecated":false,"name":"macOS"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:file:onCompletion:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier","text":"URL"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fileMover(isPresented:file:onCompletion:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:).json new file mode 100644 index 0000000..538030a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileMover(isPresented:file:onCompletion:onCancellation:)"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileMover","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"file","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier","text":"URL"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"file"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE9fileMover11isPresented0D012onCompletion0H12CancellationQrAA7BindingVySbG_10Foundation3URLVSgys6ResultOyANs5Error_pGcyyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"introducedAt":"14.0","unavailable":false,"name":"macOS","beta":false}],"role":"symbol","title":"fileMover(isPresented:file:onCompletion:onCancellation:)","extendedModule":"SwiftUI","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:oncancellation:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:onCancellation:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:file:onCompletion:onCancellation:)":{"title":"fileMover(isPresented:file:onCompletion:onCancellation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:oncancellation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"file"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:onCancellation:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:).json new file mode 100644 index 0000000..f1f02e1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"platforms":[{"deprecated":false,"introducedAt":"14.0","beta":false,"unavailable":false,"name":"iOS"},{"beta":false,"introducedAt":"11.0","name":"macOS","deprecated":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"fileMover(isPresented:files:onCompletion:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE9fileMover11isPresented5files12onCompletionQrAA7BindingVySbG_qd__ys6ResultOySay10Foundation3URLVGs5Error_pGctSlRd__AO7ElementRtd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"files"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"files","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":"<["},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"Collection","kind":"typeIdentifier","preciseIdentifier":"s:Sl"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fileMover(isPresented:files:onCompletion:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:files:onCompletion:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileMover"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"files"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:)","title":"fileMover(isPresented:files:onCompletion:)","kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:).json new file mode 100644 index 0000000..bb027dd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fileMover(isPresented:files:onCompletion:onCancellation:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:oncancellation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:onCancellation:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileMover","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"files","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Collection","preciseIdentifier":"s:Sl"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"17.0"},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE9fileMover11isPresented5files12onCompletion0I12CancellationQrAA7BindingVySbG_qd__ys6ResultOySay10Foundation3URLVGs5Error_pGcyyctSlRd__AP7ElementRtd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"fileMover(isPresented:files:onCompletion:onCancellation:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileMover"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"files"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:files:onCompletion:onCancellation:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:oncancellation:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileMover"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"files"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:onCancellation:)","kind":"symbol","title":"fileMover(isPresented:files:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:).json new file mode 100644 index 0000000..eeaef96 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.findDisabled(_:)"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"findDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"findDisabled(_:)","symbolKind":"method","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12findDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findDisabled(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"findDisabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isDisabled","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/finddisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/findDisabled(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"findDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"findDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/finddisabled(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:).json new file mode 100644 index 0000000..edf58af --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/findnavigator(ispresented:)"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"findNavigator","kind":"identifier"},{"kind":"text","text":"("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"}],"roleHeading":"Instance Method","title":"findNavigator(isPresented:)","symbolKind":"method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE13findNavigator11isPresentedQrAA7BindingVySbG_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.findNavigator(isPresented:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findNavigator(isPresented:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"findNavigator"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/findNavigator(isPresented:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/findnavigator(ispresented:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"findNavigator"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findNavigator(isPresented:)","kind":"symbol","title":"findNavigator(isPresented:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize().json new file mode 100644 index 0000000..e4ee833 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize().json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize()","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false},{"unavailable":false,"name":"macOS","introducedAt":"10.15","beta":false,"deprecated":false},{"deprecated":false,"introducedAt":"13.0","beta":false,"unavailable":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false}],"role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fixedSize"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"fixedSize()","externalID":"s:7SwiftUI4ViewPAAE9fixedSizeQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fixedSize()"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize()"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fixedSize"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fixedSize()":{"title":"fixedSize()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fixedSize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:).json new file mode 100644 index 0000000..d4f6aec --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize(horizontal:vertical:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fixedSize"},{"kind":"text","text":"("},{"kind":"externalParam","text":"horizontal"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"vertical"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"unavailable":false,"name":"macOS","introducedAt":"10.15","beta":false,"deprecated":false},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"13.0","beta":false},{"introducedAt":"6.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"fixedSize(horizontal:vertical:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE9fixedSize10horizontal8verticalQrSb_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fixedSize(horizontal:vertical:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fixedSize","kind":"identifier"},{"kind":"text","text":"("},{"text":"horizontal","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"vertical","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize(horizontal:vertical:)"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fixedSize(horizontal:vertical:)":{"title":"fixedSize(horizontal:vertical:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize(horizontal:vertical:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fixedSize","kind":"identifier"},{"text":"(","kind":"text"},{"text":"horizontal","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"vertical","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize(horizontal:vertical:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:).json new file mode 100644 index 0000000..595603d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/flipsForRightToLeftLayoutDirection(_:)"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"flipsForRightToLeftLayoutDirection"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"enabled"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/flipsforrighttoleftlayoutdirection(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE34flipsForRightToLeftLayoutDirectionyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"13.0"},{"beta":false,"deprecated":false,"name":"watchOS","unavailable":false,"introducedAt":"6.0"}],"role":"symbol","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","title":"flipsForRightToLeftLayoutDirection(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flipsForRightToLeftLayoutDirection"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.flipsForRightToLeftLayoutDirection(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/flipsForRightToLeftLayoutDirection(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/flipsForRightToLeftLayoutDirection(_:)","kind":"symbol","title":"flipsForRightToLeftLayoutDirection(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/flipsforrighttoleftlayoutdirection(_:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flipsForRightToLeftLayoutDirection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:).json new file mode 100644 index 0000000..486ec78 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:)"]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE9focusableyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"17.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"12.0","deprecated":false,"beta":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"beta":false,"introducedAt":"15.0","unavailable":false},{"beta":false,"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false}],"role":"symbol","title":"focusable(_:)","extendedModule":"SwiftUI","symbolKind":"method"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.focusable(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isFocusable"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusable(_:)":{"abstract":[],"type":"topic","title":"focusable(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:).json new file mode 100644 index 0000000..2d87ace --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:interactions:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"isFocusable","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = true, ","kind":"text"},{"text":"interactions","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FocusInteractions","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17FocusInteractionsV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:interactions:)"},"metadata":{"title":"focusable(_:interactions:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"17.0","unavailable":false,"beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"deprecated":false,"beta":false,"introducedAt":"17.0","name":"tvOS","unavailable":false},{"unavailable":false,"beta":false,"introducedAt":"10.0","deprecated":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE9focusable_12interactionsQrSb_AA17FocusInteractionsVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusable","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"interactions"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17FocusInteractionsV","text":"FocusInteractions"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"symbolKind":"method","extendedModule":"SwiftUI","role":"symbol"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusable(_:interactions:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusable(_:interactions:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"text":"interactions","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FocusInteractions","preciseIdentifier":"s:7SwiftUI17FocusInteractionsV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"focusable(_:interactions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:interactions:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:interactions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:).json new file mode 100644 index 0000000..c874e7f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focused(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focused","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"condition","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">.","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"focused(_:)","externalID":"s:7SwiftUI4ViewPAAE7focusedyQrAA10FocusStateV7BindingVySb_GF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focused"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">.","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS"},{"beta":false,"introducedAt":"12.0","unavailable":false,"deprecated":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"8.0","beta":false}],"role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focused(_:)":{"title":"focused(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focused"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">."},{"text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:).json new file mode 100644 index 0000000..e9db667 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:equals:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:equals:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.focused(_:equals:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"focused"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"binding"},{"kind":"text","text":": "},{"text":"FocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":">."},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"equals"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Value"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"deprecated":false,"unavailable":false,"introducedAt":"12.0","name":"macOS","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"name":"tvOS","introducedAt":"15.0"},{"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE7focused_6equalsQrAA10FocusStateV7BindingVyqd___G_qd__tSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focused","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"FocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":">.","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"equals","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"focused(_:equals:)"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focused(_:equals:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:equals:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:equals:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focused","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV"},{"text":", ","kind":"text"},{"text":"equals","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"focused(_:equals:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd.json new file mode 100644 index 0000000..52a2814 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE13focusedObjectyQrqd__Sg7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"16.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"9.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"title":"focusedObject(_:)","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-1g0dd","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-1g0dd"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.focusedObject(_:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"object","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"ObservableObject","kind":"typeIdentifier","preciseIdentifier":"s:7Combine16ObservableObjectP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedObject(_:)-1g0dd":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-1g0dd","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"focusedObject(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-1g0dd","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz.json new file mode 100644 index 0000000..3fedbf2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz.json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-6gnqz"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-6gnqz"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false,"name":"tvOS"},{"introducedAt":"9.0","beta":false,"name":"watchOS","unavailable":false,"deprecated":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"focusedObject"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE13focusedObjectyQrqd__7Combine010ObservableE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"focusedObject(_:)","extendedModule":"SwiftUI","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.focusedObject(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"object","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"ObservableObject","kind":"typeIdentifier","preciseIdentifier":"s:7Combine16ObservableObjectP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedObject(_:)-6gnqz":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"focusedObject(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-6gnqz","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-6gnqz"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g.json new file mode 100644 index 0000000..cf9c457 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusedSceneObject(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-3301g"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"focusedSceneObject"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"object","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ObservableObject","preciseIdentifier":"s:7Combine16ObservableObjectP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"16.0"},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0","name":"tvOS"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"9.0","beta":false}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18focusedSceneObjectyQrqd__Sg7Combine010ObservableF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","title":"focusedSceneObject(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusedSceneObject","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-3301g","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneObject(_:)-3301g":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-3301g","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedSceneObject","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-3301g","title":"focusedSceneObject(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby.json new file mode 100644 index 0000000..85aea21 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-8fmby","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"focusedSceneObject"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"object","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine16ObservableObjectP","text":"ObservableObject"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE18focusedSceneObjectyQrqd__7Combine010ObservableF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","introducedAt":"16.0","beta":false,"deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"16.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"9.0"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"focusedSceneObject(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusedSceneObject","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.focusedSceneObject(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-8fmby"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneObject(_:)-8fmby":{"abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedSceneObject"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"focusedSceneObject(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-8fmby","kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-8fmby"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3.json new file mode 100644 index 0000000..eb40727 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3.json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"12.0","beta":false,"unavailable":false,"deprecated":false,"name":"macOS"},{"deprecated":false,"name":"tvOS","introducedAt":"15.0","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0","name":"watchOS"}],"role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"focusedSceneValue"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"focusedSceneValue(_:_:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE17focusedSceneValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedSceneValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"keyPath","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"kind":"text","text":"<"},{"text":"FocusedValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-1qpp3","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusedSceneValue(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-1qpp3"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneValue(_:_:)-1qpp3":{"title":"focusedSceneValue(_:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-1qpp3","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedSceneValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"text":"FocusedValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?>, ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-1qpp3","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo.json new file mode 100644 index 0000000..50a203c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-6shvo","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusedSceneValue(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"focusedSceneValue"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"keyPath","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","platforms":[{"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"beta":false},{"name":"tvOS","introducedAt":"16.0","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"deprecated":false}],"title":"focusedSceneValue(_:_:)","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE17focusedSceneValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_AItlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedSceneValue"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?>, "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-6shvo"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneValue(_:_:)-6shvo":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedSceneValue"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI13FocusedValuesV","kind":"typeIdentifier","text":"FocusedValues"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"focusedSceneValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-6shvo","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-6shvo","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:).json new file mode 100644 index 0000000..4073f5d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","title":"focusedValue(_:)","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"14.0","unavailable":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"introducedAt":"10.0","unavailable":false,"deprecated":false,"beta":false,"name":"watchOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE12focusedValueyQrqd__SgRld__C11Observation10ObservableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusedValue","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedValue"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"object"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : AnyObject, ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:11Observation10ObservableP","text":"Observable"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusedValue(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:)":{"abstract":[],"title":"focusedValue(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:)","role":"symbol","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz.json new file mode 100644 index 0000000..33beb9a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-55vrz"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.focusedValue(_:_:)"},{"type":"text","text":"."}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-55vrz"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"keyPath"},{"kind":"text","text":": "},{"text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"FocusedValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":"?>, "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"focusedValue(_:_:)","externalID":"s:7SwiftUI4ViewPAAE12focusedValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_qd__tlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusedValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Value"},{"text":">(","kind":"text"},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13FocusedValuesV","kind":"typeIdentifier","text":"FocusedValues"},{"text":", ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"11.0","unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"7.0","beta":false}],"role":"symbol"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:_:)-55vrz":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedValue"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","role":"symbol","title":"focusedValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-55vrz","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-55vrz"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d.json new file mode 100644 index 0000000..d0954c4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.focusedValue(_:_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedValue"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"keyPath"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":"?>, ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Value","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-7hm2d"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-7hm2d","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0","name":"tvOS"},{"beta":false,"introducedAt":"9.0","unavailable":false,"deprecated":false,"name":"watchOS"}],"role":"symbol","title":"focusedValue(_:_:)","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedValue"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Value"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"FocusedValues","preciseIdentifier":"s:7SwiftUI13FocusedValuesV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Value"},{"text":"?>, ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12focusedValueyQrs15WritableKeyPathCyAA13FocusedValuesVqd__SgG_AItlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:_:)-7hm2d":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"text":", ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"focusedValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-7hm2d","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-7hm2d"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:).json new file mode 100644 index 0000000..a4644aa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"17.0"},{"deprecated":false,"introducedAt":"14.0","name":"macOS","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false,"name":"tvOS"},{"unavailable":false,"deprecated":false,"introducedAt":"10.0","name":"watchOS","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE19focusEffectDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusEffectDisabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"focusEffectDisabled(_:)"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusEffectDisabled(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.focusEffectDisabled(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/focuseffectdisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusEffectDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"disabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusEffectDisabled(_:)":{"title":"focusEffectDisabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focuseffectdisabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusEffectDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusEffectDisabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/font(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/font(_:).json new file mode 100644 index 0000000..e97f848 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/font(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/font(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.font(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/font(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"font"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"font"},{"text":": ","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE4fontyQrAA4FontVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"font(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"font","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"deprecated":false,"unavailable":false,"introducedAt":"10.15","name":"macOS","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"name":"watchOS","introducedAt":"6.0","deprecated":false,"beta":false}],"roleHeading":"Instance Method","symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/font(_:)":{"title":"font(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/font(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"font"},{"text":"(","kind":"text"},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/font(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:).json new file mode 100644 index 0000000..c33d70a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fontdesign(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fontDesign(_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontDesign(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fontDesign","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"design"},{"kind":"text","text":": "},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV6DesignO","text":"Design","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fontDesign"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Font","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"."},{"text":"Design","preciseIdentifier":"s:7SwiftUI4FontV6DesignO","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"fontDesign(_:)","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"16.1","deprecated":false,"beta":false},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"16.1","deprecated":false,"beta":false,"name":"tvOS"},{"introducedAt":"9.1","name":"watchOS","unavailable":false,"deprecated":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE10fontDesignyQrAA4FontV0E0OSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontDesign(_:)":{"title":"fontDesign(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontdesign(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fontDesign","kind":"identifier"},{"kind":"text","text":"("},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV6DesignO","kind":"typeIdentifier","text":"Design"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontDesign(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontweight(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontweight(_:).json new file mode 100644 index 0000000..6388686 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontweight(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWeight(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fontweight(_:)"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.fontWeight(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fontWeight","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"weight","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Weight","preciseIdentifier":"s:7SwiftUI4FontV6WeightV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"metadata":{"role":"symbol","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"macOS"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"9.0"}],"roleHeading":"Instance Method","title":"fontWeight(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE10fontWeightyQrAA4FontV0E0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fontWeight","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Weight","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV6WeightV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontWeight(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fontWeight"},{"text":"(","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV6WeightV","text":"Weight","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fontWeight(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontweight(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWeight(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:).json new file mode 100644 index 0000000..32ca4d5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:).json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","title":"fontWidth(_:)","externalID":"s:7SwiftUI4ViewPAAE9fontWidthyQrAA4FontV0E0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"16.0"},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"macOS","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"16.0","name":"tvOS"},{"beta":false,"deprecated":false,"unavailable":false,"name":"watchOS","introducedAt":"9.0"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fontWidth"},{"text":"(","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4FontV5WidthV","text":"Width","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fontwidth(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.fontWidth(_:)"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fontWidth","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"width","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV","text":"Font"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV5WidthV","kind":"typeIdentifier","text":"Width"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWidth(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontWidth(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fontWidth","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier","text":"Font"},{"kind":"text","text":"."},{"text":"Width","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV5WidthV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fontWidth(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontwidth(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWidth(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:).json new file mode 100644 index 0000000..120f8b6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundColor(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE15foregroundColoryQrAA0E0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"foregroundColor(_:)","platforms":[{"deprecated":false,"beta":false,"name":"iOS","unavailable":false,"deprecatedAt":"100000.0","introducedAt":"13.0","renamed":"foregroundStyle(_:)"},{"unavailable":false,"beta":false,"renamed":"foregroundStyle(_:)","deprecated":false,"deprecatedAt":"100000.0","introducedAt":"10.15","name":"macOS"},{"deprecated":false,"introducedAt":"13.0","beta":false,"name":"tvOS","deprecatedAt":"100000.0","renamed":"foregroundStyle(_:)","unavailable":false},{"unavailable":false,"renamed":"foregroundStyle(_:)","deprecated":false,"beta":false,"introducedAt":"6.0","name":"watchOS","deprecatedAt":"100000.0"},{"beta":false,"unavailable":false,"deprecatedAt":"100000.0","renamed":"foregroundStyle(_:)","introducedAt":"1.0","name":"visionOS","deprecated":false}],"extendedModule":"SwiftUI","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundColor","kind":"identifier"},{"kind":"text","text":"("},{"text":"Color","preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.foregroundColor(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundcolor(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"foregroundColor"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"color","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundColor(_:)":{"title":"foregroundColor(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundcolor(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundColor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundColor(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:).json new file mode 100644 index 0000000..4331a72 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"title":"foregroundStyle(_:)","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0","beta":false},{"unavailable":false,"beta":false,"name":"tvOS","deprecated":false,"introducedAt":"15.0"},{"name":"watchOS","beta":false,"introducedAt":"8.0","unavailable":false,"deprecated":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd__AA05ShapeE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"foregroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.foregroundStyle(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:)","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:)","title":"foregroundStyle(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"foregroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:).json new file mode 100644 index 0000000..942bfe0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"foregroundStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S1"},{"text":", ","kind":"text"},{"text":"S2","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"text":"S2","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","role":"symbol","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"15.0","unavailable":false},{"introducedAt":"12.0","name":"macOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"name":"tvOS","deprecated":false,"introducedAt":"15.0"},{"introducedAt":"8.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_tAA05ShapeE0Rd__AaERd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"foregroundStyle(_:_:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.foregroundStyle(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"foregroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S1"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S2"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"primary"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"secondary","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S2"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":" : "},{"text":"ShapeStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S2"},{"text":" : ","kind":"text"},{"text":"ShapeStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundStyle"},{"kind":"text","text":"<"},{"text":"S1","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S2","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S2"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"foregroundStyle(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:).json new file mode 100644 index 0000000..0db9426 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"8.0"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE15foregroundStyleyQrqd___qd_0_qd_1_tAA05ShapeE0Rd__AaERd_0_AaERd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"foregroundStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S1","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S2"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S3"},{"kind":"text","text":">("},{"text":"S1","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"S2","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"S3","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"foregroundStyle(_:_:_:)","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.foregroundStyle(_:_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"foregroundStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S1","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S2"},{"kind":"text","text":", "},{"text":"S3","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"primary","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S1","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"secondary"},{"text":": ","kind":"text"},{"text":"S2","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"tertiary","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S3","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":" : "},{"text":"ShapeStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S2"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S3"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:_:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:_:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S1","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S2"},{"kind":"text","text":", "},{"text":"S3","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S2"},{"kind":"text","text":", "},{"text":"S3","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"foregroundStyle(_:_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/formstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/formstyle(_:).json new file mode 100644 index 0000000..41b0764 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/formstyle(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/formStyle(_:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9FormStyleP","text":"FormStyle","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/formstyle(_:)"]}],"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0"},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"16.0"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"9.0","name":"watchOS"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE9formStyleyQrqd__AA04FormE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"formStyle(_:)"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.formStyle(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/formStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"formStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/formstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/formStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame().json new file mode 100644 index 0000000..ed4f683 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame().json @@ -0,0 +1 @@ +{"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/frame()"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.frame()"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0"},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"10.15"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"beta":false,"introducedAt":"6.0","name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","title":"frame()","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"frame"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE5frameQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame()"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"frame","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","deprecationSummary":[{"inlineContent":[{"type":"text","text":"Please pass one or more parameters."}],"type":"paragraph"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame()":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"frame","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"frame()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame()"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json new file mode 100644 index 0000000..e55c465 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"frame","kind":"identifier"},{"kind":"text","text":"("},{"text":"minWidth","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"idealWidth"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil, ","kind":"text"},{"text":"maxWidth","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"? = nil, "},{"text":"minHeight","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil, ","kind":"text"},{"text":"idealHeight","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"text":"maxHeight","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"kind":"text","text":" = .center) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"title":"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","externalID":"s:7SwiftUI4ViewPAAE5frame8minWidth05idealF003maxF00E6Height0gI00hI09alignmentQr14CoreFoundation7CGFloatVSg_A5oA9AlignmentVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","platforms":[{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"iOS","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"10.15","name":"macOS"},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"beta":false,"deprecated":false},{"beta":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS","unavailable":false}],"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"frame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minWidth"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"text":"idealWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"maxWidth"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"minHeight","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"idealHeight"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"text":"maxHeight","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)":{"title":"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"frame"},{"text":"(","kind":"text"},{"text":"minWidth","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"idealWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"maxWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":"?, ","kind":"text"},{"text":"minHeight","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"?, ","kind":"text"},{"text":"idealHeight","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"maxHeight"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:).json new file mode 100644 index 0000000..10acd9a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"frame(width:height:alignment:)","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"10.15","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"frame"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"text":"height","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE5frame5width6height9alignmentQr14CoreFoundation7CGFloatVSg_AkA9AlignmentVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(width:height:alignment:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.frame(width:height:alignment:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/frame(width:height:alignment:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"frame","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"width"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil, ","kind":"text"},{"text":"height","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil, ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"text":" = .center) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame(width:height:alignment:)":{"title":"frame(width:height:alignment:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(width:height:alignment:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame(width:height:alignment:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"frame","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"width"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"height"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:).json new file mode 100644 index 0000000..e931020 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.fullScreenCover(isPresented:onDismiss:content:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fullScreenCover"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"onDismiss","kind":"externalParam"},{"text":": (() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil, "},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(isPresented:onDismiss:content:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(ispresented:ondismiss:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"platforms":[{"name":"iOS","beta":false,"introducedAt":"14.0","deprecated":false,"unavailable":false},{"introducedAt":"14.0","beta":false,"name":"tvOS","deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fullScreenCover","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"onDismiss","kind":"externalParam"},{"text":": (() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","role":"symbol","title":"fullScreenCover(isPresented:onDismiss:content:)","externalID":"s:7SwiftUI4ViewPAAE15fullScreenCover11isPresented9onDismiss7contentQrAA7BindingVySbG_yycSgqd__yctAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fullScreenCover(isPresented:onDismiss:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(ispresented:ondismiss:content:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(isPresented:onDismiss:content:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullScreenCover"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?, "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"fullScreenCover(isPresented:onDismiss:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:).json new file mode 100644 index 0000000..25521f4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:).json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(item:onDismiss:content:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(item:ondismiss:content:)"]}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"14.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"7.0","name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE15fullScreenCover4item9onDismiss7contentQrAA7BindingVyqd__SgG_yycSgqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fullScreenCover","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?, "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","title":"fullScreenCover(item:onDismiss:content:)","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fullScreenCover","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"text":"?>, ","kind":"text"},{"text":"onDismiss","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":")? = nil, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.fullScreenCover(item:onDismiss:content:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fullScreenCover(item:onDismiss:content:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullScreenCover"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"kind":"text","text":": (() -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fullScreenCover(item:onDismiss:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(item:ondismiss:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(item:onDismiss:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:).json new file mode 100644 index 0000000..49b0506 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.gaugeStyle(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gaugestyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gaugeStyle(_:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"gaugeStyle(_:)","externalID":"s:7SwiftUI4ViewPAAE10gaugeStyleyQrqd__AA05GaugeE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"gaugeStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"introducedAt":"16.0","unavailable":false,"name":"iOS","deprecated":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"macOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"7.0","name":"watchOS"}],"role":"symbol"},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gaugeStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI10GaugeStyleP","text":"GaugeStyle","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gaugeStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gaugeStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"gaugeStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gaugestyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gaugeStyle(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/geometrygroup().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/geometrygroup().json new file mode 100644 index 0000000..61f7b44 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/geometrygroup().json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.geometryGroup()"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/geometryGroup()","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"geometryGroup","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/geometrygroup()"]}],"kind":"symbol","metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"geometryGroup","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"geometryGroup()","externalID":"s:7SwiftUI4ViewPAAE13geometryGroupQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"macOS","unavailable":false},{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"10.0","unavailable":false,"beta":false}],"symbolKind":"method","extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/geometryGroup()":{"title":"geometryGroup()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/geometrygroup()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"geometryGroup","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/geometryGroup()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:).json new file mode 100644 index 0000000..5b21be5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"gesture(_:including:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gesture","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"including"},{"text":": ","kind":"text"},{"text":"GestureMask","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE7gesture_9includingQrqd___AA11GestureMaskVtAA0F0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15"},{"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0"}],"symbolKind":"method"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.gesture(_:including:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"gesture"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"gesture","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"including"},{"kind":"text","text":" "},{"kind":"internalParam","text":"mask"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11GestureMaskV","kind":"typeIdentifier","text":"GestureMask"},{"kind":"text","text":" = .all) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7GestureP","text":"Gesture"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gesture(_:including:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gesture(_:including:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gesture(_:including:)":{"title":"gesture(_:including:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gesture(_:including:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"gesture","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"including","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV","text":"GestureMask"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gesture(_:including:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/grayscale(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/grayscale(_:).json new file mode 100644 index 0000000..46d3ab4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/grayscale(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/grayscale(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.grayscale(_:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/grayscale(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"grayscale","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"amount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"sections":[],"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE9grayscaleyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"10.15","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"6.0"}],"title":"grayscale(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"grayscale","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/grayscale(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"grayscale"},{"kind":"text","text":"("},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/grayscale(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/grayscale(_:)","type":"topic","role":"symbol","abstract":[],"title":"grayscale(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:).json new file mode 100644 index 0000000..09bbb0a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false,"name":"iOS"},{"introducedAt":"13.0","unavailable":false,"beta":false,"deprecated":false,"name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"16.0","unavailable":false,"deprecated":false},{"introducedAt":"9.0","name":"watchOS","unavailable":false,"deprecated":false,"beta":false}],"role":"symbol","title":"gridCellAnchor(_:)","externalID":"s:7SwiftUI4ViewPAAE14gridCellAnchoryQrAA9UnitPointVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"gridCellAnchor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellAnchor(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.gridCellAnchor(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"gridCellAnchor"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellanchor(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellAnchor(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellanchor(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellAnchor(_:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gridCellAnchor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"gridCellAnchor(_:)","role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:).json new file mode 100644 index 0000000..03f0d1e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellcolumns(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellColumns(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"gridCellColumns(_:)","roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","platforms":[{"unavailable":false,"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false},{"deprecated":false,"introducedAt":"13.0","beta":false,"unavailable":false,"name":"macOS"},{"unavailable":false,"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"16.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0","name":"watchOS"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"gridCellColumns","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE15gridCellColumnsyQrSiF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gridCellColumns"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"count","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.gridCellColumns(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellColumns(_:)":{"title":"gridCellColumns(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellcolumns(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gridCellColumns","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellColumns(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:).json new file mode 100644 index 0000000..cd37a97 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.gridCellUnsizedAxes(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gridCellUnsizedAxes"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"axes","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellUnsizedAxes(_:)","interfaceLanguage":"swift"},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellunsizedaxes(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"13.0","name":"macOS","deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"16.0","name":"tvOS","deprecated":false},{"introducedAt":"9.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE19gridCellUnsizedAxesyQrAA4AxisO3SetVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"gridCellUnsizedAxes(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gridCellUnsizedAxes"},{"kind":"text","text":"("},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellUnsizedAxes(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"gridCellUnsizedAxes","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier","text":"Axis"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"gridCellUnsizedAxes(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellunsizedaxes(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellUnsizedAxes(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:).json new file mode 100644 index 0000000..c7221ff --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.gridColumnAlignment(_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridColumnAlignment(_:)"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"gridColumnAlignment","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"guide","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","text":"HorizontalAlignment"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE19gridColumnAlignmentyQrAA010HorizontalF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"gridColumnAlignment","kind":"identifier"},{"text":"(","kind":"text"},{"text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"deprecated":false,"unavailable":false,"introducedAt":"9.0","name":"watchOS","beta":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"gridColumnAlignment(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/gridcolumnalignment(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridColumnAlignment(_:)":{"abstract":[],"title":"gridColumnAlignment(_:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridColumnAlignment(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gridColumnAlignment"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcolumnalignment(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:).json new file mode 100644 index 0000000..4317269 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"groupBoxStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13GroupBoxStyleP","text":"GroupBoxStyle"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/groupBoxStyle(_:)","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE13groupBoxStyleyQrqd__AA05GroupeF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"groupBoxStyle(_:)","platforms":[{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"11.0","name":"macOS"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"groupBoxStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.groupBoxStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/groupboxstyle(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/groupBoxStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/groupboxstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/groupBoxStyle(_:)","role":"symbol","type":"topic","title":"groupBoxStyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupBoxStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:).json new file mode 100644 index 0000000..b941599 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/handlesExternalEvents(preferring:allowing:)"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.handlesExternalEvents(preferring:allowing:)"},{"type":"text","text":"."}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/handlesexternalevents(preferring:allowing:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"handlesExternalEvents","kind":"identifier"},{"kind":"text","text":"("},{"text":"preferring","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sh","kind":"typeIdentifier","text":"Set"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"allowing","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"handlesExternalEvents(preferring:allowing:)","externalID":"s:7SwiftUI4ViewPAAE21handlesExternalEvents10preferring8allowingQrShySSG_AGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"handlesExternalEvents"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"preferring"},{"text":": ","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"allowing","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Set","preciseIdentifier":"s:Sh","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"14.0","name":"iOS","beta":false,"deprecated":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"11.0","unavailable":false}],"role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/handlesExternalEvents(preferring:allowing:)":{"title":"handlesExternalEvents(preferring:allowing:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/handlesexternalevents(preferring:allowing:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"handlesExternalEvents","kind":"identifier"},{"kind":"text","text":"("},{"text":"preferring","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"allowing","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/handlesExternalEvents(preferring:allowing:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:).json new file mode 100644 index 0000000..0a7f57e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/headerprominence(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/headerProminence(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"headerProminence"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"prominence","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ProminenceO","text":"Prominence"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"headerProminence"},{"kind":"text","text":"("},{"text":"Prominence","preciseIdentifier":"s:7SwiftUI10ProminenceO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"headerProminence(_:)","roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE16headerProminenceyQrAA0E0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"introducedAt":"15.0","deprecated":false,"name":"iOS","unavailable":false},{"name":"macOS","beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false},{"name":"tvOS","beta":false,"introducedAt":"15.0","unavailable":false,"deprecated":false},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"8.0"}]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.headerProminence(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/headerProminence(_:)":{"title":"headerProminence(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/headerprominence(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"headerProminence","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10ProminenceO","kind":"typeIdentifier","text":"Prominence"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/headerProminence(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1.json new file mode 100644 index 0000000..ff6e7d5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1.json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-1en1","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.help(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"help"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"textKey","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"help"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"14.0","deprecated":false},{"introducedAt":"11.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"introducedAt":"7.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"help(_:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE4helpyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-1en1"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-1en1":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"help","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-1en1","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-1en1","type":"topic","title":"help(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v.json new file mode 100644 index 0000000..afb5d15 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v.json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.help(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-3sq7v"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS"},{"beta":false,"introducedAt":"11.0","unavailable":false,"name":"macOS","deprecated":false},{"introducedAt":"14.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"7.0","name":"watchOS"}],"title":"help(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE4helpyQrAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"help","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-3sq7v","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"help"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"text"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-3sq7v":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"help"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"help(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-3sq7v","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-3sq7v","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd.json new file mode 100644 index 0000000..013ad94 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-8cfgd"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"help"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"text","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.help(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"platforms":[{"unavailable":false,"introducedAt":"14.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"deprecated":false,"beta":false,"introducedAt":"14.0","name":"tvOS","unavailable":false},{"unavailable":false,"introducedAt":"7.0","name":"watchOS","beta":false,"deprecated":false}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"help"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE4helpyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","title":"help(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-8cfgd"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-8cfgd":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-8cfgd","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-8cfgd","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"help","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","type":"topic","title":"help(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hidden().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hidden().json new file mode 100644 index 0000000..58fffbf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hidden().json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.hidden()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","title":"hidden()","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15","name":"macOS"},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","beta":false,"deprecated":false},{"beta":false,"introducedAt":"6.0","unavailable":false,"deprecated":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE6hiddenQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"hidden","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hidden"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/hidden()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hidden()","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hidden()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hidden"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"hidden()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hidden()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hidden()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:).json new file mode 100644 index 0000000..9850df1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:).json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/highprioritygesture(_:including:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/highPriorityGesture(_:including:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.highPriorityGesture(_:including:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"highPriorityGesture"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"gesture","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"including"},{"kind":"text","text":" "},{"text":"mask","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"GestureMask","preciseIdentifier":"s:7SwiftUI11GestureMaskV","kind":"typeIdentifier"},{"kind":"text","text":" = .all) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Gesture","preciseIdentifier":"s:7SwiftUI7GestureP"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false,"name":"macOS"},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"highPriorityGesture"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"including"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"GestureMask","preciseIdentifier":"s:7SwiftUI11GestureMaskV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE19highPriorityGesture_9includingQrqd___AA0F4MaskVtAA0F0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"highPriorityGesture(_:including:)","extendedModule":"SwiftUI","role":"symbol"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/highPriorityGesture(_:including:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"highPriorityGesture","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"including","kind":"externalParam"},{"kind":"text","text":": "},{"text":"GestureMask","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"highPriorityGesture(_:including:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/highprioritygesture(_:including:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/highPriorityGesture(_:including:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:).json new file mode 100644 index 0000000..e248565 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.hoverEffect(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hoverEffect"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"text":"HoverEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"text":" = .automatic) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"symbolKind":"method","role":"symbol","title":"hoverEffect(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE11hoverEffectyQrAA05HoverE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"13.4","unavailable":false,"beta":false,"deprecated":false,"name":"iOS"},{"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"16.0","deprecated":false},{"deprecated":false,"name":"visionOS","beta":false,"unavailable":false,"introducedAt":"1.0"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hoverEffect"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"HoverEffect","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffect(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:)","title":"hoverEffect(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffect","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI11HoverEffectV","text":"HoverEffect","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:).json new file mode 100644 index 0000000..f03cf77 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"hoverEffect(_:isEnabled:)","externalID":"s:7SwiftUI4ViewPAAE11hoverEffect_9isEnabledQrAA05HoverE0V_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"HoverEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0","name":"iOS"},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"17.0","unavailable":false},{"name":"visionOS","deprecated":false,"unavailable":false,"introducedAt":"1.0","beta":false}],"role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:isEnabled:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.hoverEffect(_:isEnabled:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hoverEffect"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI11HoverEffectV","kind":"typeIdentifier","text":"HoverEffect"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = true) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:isenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffect(_:isEnabled:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:isenabled:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:isEnabled:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffect","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HoverEffect","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"hoverEffect(_:isEnabled:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:).json new file mode 100644 index 0000000..2574ab8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.hoverEffectDisabled(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hoverEffectDisabled"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"disabled","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffectdisabled(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffectDisabled(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"17.0","deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"deprecated":false,"introducedAt":"1.0","name":"visionOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE19hoverEffectDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"hoverEffectDisabled(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffectDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffectDisabled(_:)":{"title":"hoverEffectDisabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffectdisabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffectDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffectDisabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/huerotation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/huerotation(_:).json new file mode 100644 index 0000000..f3c03fd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/huerotation(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.hueRotation(_:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hueRotation(_:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"hueRotation","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"angle"},{"text":": ","kind":"text"},{"text":"Angle","preciseIdentifier":"s:7SwiftUI5AngleV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/huerotation(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hueRotation"},{"kind":"text","text":"("},{"text":"Angle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AngleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11hueRotationyQrAA5AngleVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"hueRotation(_:)","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.15","name":"macOS"},{"deprecated":false,"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hueRotation(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hueRotation","kind":"identifier"},{"kind":"text","text":"("},{"text":"Angle","preciseIdentifier":"s:7SwiftUI5AngleV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"hueRotation(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/huerotation(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hueRotation(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/id(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/id(_:).json new file mode 100644 index 0000000..46a707c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/id(_:).json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"introducedAt":"6.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","title":"id(_:)","externalID":"s:7SwiftUI4ViewPAAE2idyQrqd__SHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"id"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"kind":"text","text":">("},{"text":"ID","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/id(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.id(_:)"},{"text":".","type":"text"}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"id","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ID"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"id","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ID"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"ID","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Hashable","kind":"typeIdentifier","preciseIdentifier":"s:SH"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/id(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/id(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/id(_:)","title":"id(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/id(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:).json new file mode 100644 index 0000000..87119f8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.ignoresSafeArea(_:edges:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"ignoresSafeArea","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"regions","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SafeAreaRegionsV","text":"SafeAreaRegions"},{"kind":"text","text":" = .all, "},{"kind":"externalParam","text":"edges"},{"kind":"text","text":": "},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":" = .all) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ignoressafearea(_:edges:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/ignoresSafeArea(_:edges:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"ignoresSafeArea(_:edges:)","externalID":"s:7SwiftUI4ViewPAAE15ignoresSafeArea_5edgesQrAA0eF7RegionsV_AA4EdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"ignoresSafeArea","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15SafeAreaRegionsV","text":"SafeAreaRegions","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"introducedAt":"14.0","unavailable":false,"deprecated":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"11.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"14.0","name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"7.0","beta":false}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/ignoresSafeArea(_:edges:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"ignoresSafeArea","kind":"identifier"},{"text":"(","kind":"text"},{"text":"SafeAreaRegions","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SafeAreaRegionsV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"ignoresSafeArea(_:edges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ignoressafearea(_:edges:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/ignoresSafeArea(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/imagescale(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/imagescale(_:).json new file mode 100644 index 0000000..edb8f36 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/imagescale(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"imageScale","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"scale"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ImageV5ScaleO","text":"Scale","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.imageScale(_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/imageScale(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/imagescale(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"imageScale(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"11.0"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"unavailable":false,"introducedAt":"6.0","name":"watchOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE10imageScaleyQrAA5ImageV0E0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"imageScale","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Image","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV"},{"text":".","kind":"text"},{"text":"Scale","preciseIdentifier":"s:7SwiftUI5ImageV5ScaleO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","role":"symbol","symbolKind":"method","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/imageScale(_:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/imageScale(_:)","type":"topic","title":"imageScale(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageScale"},{"text":"(","kind":"text"},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Scale","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV5ScaleO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/imagescale(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:).json new file mode 100644 index 0000000..dcd8987 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.indexViewStyle(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/indexviewstyle(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/indexViewStyle(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"indexViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14IndexViewStyleP","text":"IndexViewStyle"},{"text":"\n","kind":"text"}]}]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"14.0","name":"tvOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"8.0"}],"externalID":"s:7SwiftUI4ViewPAAE05indexC5StyleyQrqd__AA05IndexcE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"indexViewStyle(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indexViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/indexViewStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indexViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"indexViewStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/indexviewstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/indexViewStyle(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:).json new file mode 100644 index 0000000..07aa8e6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/init(hlsURLString:playerConfig:)"},"metadata":{"externalID":"s:11PlaybackSDK18BitMovinPlayerViewV12hlsURLString12playerConfigACSS_08BitmovinE4Core0eJ0Ctcfc","role":"symbol","modules":[{"name":"PlaybackSDK"}],"symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"hlsURLString"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"playerConfig"},{"kind":"text","text":": "},{"text":"PlayerConfig","preciseIdentifier":"c:@M@BitmovinPlayerCore@objc(cs)BMPPlayerConfig","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Initializer","title":"init(hlsURLString:playerConfig:)"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"hlsURLString","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"playerConfig"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PlayerConfig","preciseIdentifier":"c:@M@BitmovinPlayerCore@objc(cs)BMPPlayerConfig"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/init(hlsurlstring:playerconfig:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/init(hlsURLString:playerConfig:)":{"title":"init(hlsURLString:playerConfig:)","abstract":[],"type":"topic","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"hlsURLString","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"playerConfig","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@M@BitmovinPlayerCore@objc(cs)BMPPlayerConfig","text":"PlayerConfig","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/init(hlsURLString:playerConfig:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/init(hlsurlstring:playerconfig:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:).json new file mode 100644 index 0000000..9dc8454 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspector(isPresented:content:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/inspector(ispresented:content:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.inspector(isPresented:content:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"inspector(isPresented:content:)","externalID":"s:7SwiftUI4ViewPAAE9inspector11isPresented7contentQrAA7BindingVySbG_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inspector","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0","name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false}],"role":"symbol"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inspector"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspector(isPresented:content:)":{"title":"inspector(isPresented:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspector(ispresented:content:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inspector"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspector(isPresented:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:).json new file mode 100644 index 0000000..89185c8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.inspectorColumnWidth(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inspectorColumnWidth"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"width"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"inspectorColumnWidth","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"inspectorColumnWidth(_:)","role":"symbol","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"17.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"14.0","deprecated":false,"beta":false,"name":"macOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20inspectorColumnWidthyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspectorColumnWidth(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inspectorColumnWidth"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"inspectorColumnWidth(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:).json new file mode 100644 index 0000000..8e8589f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"platforms":[{"name":"iOS","beta":false,"unavailable":false,"introducedAt":"17.0","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"14.0"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inspectorColumnWidth","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"min"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"ideal","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"max"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE20inspectorColumnWidth3min5ideal3maxQr14CoreFoundation7CGFloatVSg_AjKtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"inspectorColumnWidth(min:ideal:max:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(min:ideal:max:)"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.inspectorColumnWidth(min:ideal:max:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(min:ideal:max:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inspectorColumnWidth"},{"text":"(","kind":"text"},{"text":"min","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":"? = nil, "},{"text":"ideal","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"max"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspectorColumnWidth(min:ideal:max:)":{"title":"inspectorColumnWidth(min:ideal:max:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(min:ideal:max:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inspectorColumnWidth","kind":"identifier"},{"text":"(","kind":"text"},{"text":"min","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"ideal","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"max"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(min:ideal:max:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:).json new file mode 100644 index 0000000..e8fbe1b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/interactionactivitytrackingtag(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactionActivityTrackingTag(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"interactionActivityTrackingTag"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"tag","kind":"internalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.interactionActivityTrackingTag(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"interactionActivityTrackingTag","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"interactionActivityTrackingTag(_:)","externalID":"s:7SwiftUI4ViewPAAE30interactionActivityTrackingTagyQrSSF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0","name":"tvOS"},{"introducedAt":"9.0","unavailable":false,"deprecated":false,"beta":false,"name":"watchOS"}],"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","symbolKind":"method"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/interactionActivityTrackingTag(_:)":{"title":"interactionActivityTrackingTag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/interactionactivitytrackingtag(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"interactionActivityTrackingTag"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactionActivityTrackingTag(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:).json new file mode 100644 index 0000000..000f0e0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:).json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE26interactiveDismissDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","title":"interactiveDismissDisabled(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"interactiveDismissDisabled"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"12.0"},{"name":"tvOS","deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"8.0","name":"watchOS","beta":false,"deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"interactiveDismissDisabled"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"isDisabled","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.interactiveDismissDisabled(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/interactivedismissdisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactiveDismissDisabled(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/interactiveDismissDisabled(_:)":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactiveDismissDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/interactivedismissdisabled(_:)","title":"interactiveDismissDisabled(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"interactiveDismissDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:).json new file mode 100644 index 0000000..f5ba8fe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/invalidatableContent(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/invalidatablecontent(_:)"]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"14.0"},{"name":"tvOS","deprecated":false,"introducedAt":"17.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"10.0","deprecated":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE20invalidatableContentyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"invalidatableContent(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"invalidatableContent"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.invalidatableContent(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"invalidatableContent"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"invalidatable","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/invalidatableContent(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"invalidatableContent","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"invalidatableContent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/invalidatablecontent(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/invalidatableContent(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/italic(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/italic(_:).json new file mode 100644 index 0000000..db732bf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/italic(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/italic(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.italic(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/italic(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"italic","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isActive"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"italic","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0","name":"macOS"},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0"},{"beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"9.0"}],"role":"symbol","title":"italic(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE6italicyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/italic(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/italic(_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"italic","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"italic(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/italic(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:).json new file mode 100644 index 0000000..e4d9b99 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.itemProvider(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/itemprovider(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"itemProvider","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sq","text":"Optional","kind":"typeIdentifier"},{"kind":"text","text":"<() -> "},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"kind":"text","text":"?>) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","role":"symbol","extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE12itemProvideryQrSo06NSItemE0CSgycSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"itemProvider","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sq","text":"Optional","kind":"typeIdentifier"},{"text":"<() -> ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider","kind":"typeIdentifier"},{"text":"?>) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"itemProvider(_:)","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"introducedAt":"10.15","unavailable":false,"deprecated":false,"name":"macOS"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"6.0"}]},"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/itemProvider(_:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/itemProvider(_:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/itemProvider(_:)","abstract":[],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"itemProvider","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sq","text":"Optional","kind":"typeIdentifier"},{"text":"<() -> ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider","kind":"typeIdentifier"},{"text":"?>) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"itemProvider(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/itemprovider(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/kerning(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/kerning(_:).json new file mode 100644 index 0000000..b37014f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/kerning(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"kerning"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"kerning","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.kerning(_:)"},{"text":".","type":"text"}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE7kerningyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"16.0"},{"beta":false,"introducedAt":"13.0","name":"macOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"16.0","unavailable":false,"name":"tvOS","beta":false},{"introducedAt":"9.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"kerning"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"kerning(_:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/kerning(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/kerning(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/kerning(_:)":{"title":"kerning(_:)","abstract":[],"type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/kerning(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"kerning"},{"kind":"text","text":"("},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/kerning(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:).json new file mode 100644 index 0000000..3151c01 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.keyboardShortcut(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:)"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyboardShortcut","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"shortcut","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"kind":"symbol","metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE16keyboardShortcutyQrAA08KeyboardE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"11.0","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"keyboardShortcut(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyboardShortcut","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:)","kind":"symbol","title":"keyboardShortcut(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"keyboardShortcut","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:).json new file mode 100644 index 0000000..dea8b4e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"keyboardShortcut"},{"text":"(","kind":"text"},{"text":"KeyEquivalent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV"},{"kind":"text","text":", "},{"text":"modifiers","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"EventModifiers","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14EventModifiersV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"11.0","beta":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"keyboardShortcut(_:modifiers:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiersQrAA13KeyEquivalentV_AA14EventModifiersVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.keyboardShortcut(_:modifiers:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"keyboardShortcut"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent"},{"kind":"text","text":", "},{"kind":"externalParam","text":"modifiers"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI14EventModifiersV","kind":"typeIdentifier","text":"EventModifiers"},{"text":" = .command) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:modifiers:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"keyboardShortcut"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier","text":"KeyEquivalent"},{"text":", ","kind":"text"},{"text":"modifiers","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14EventModifiersV","text":"EventModifiers"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"keyboardShortcut(_:modifiers:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:).json new file mode 100644 index 0000000..90bc227 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.keyboardShortcut(_:modifiers:localization:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"keyboardShortcut"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"modifiers","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI14EventModifiersV","text":"EventModifiers","kind":"typeIdentifier"},{"text":" = .command, ","kind":"text"},{"text":"localization","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV12LocalizationV","text":"Localization","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:localization:)"]}],"metadata":{"platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"12.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false}],"title":"keyboardShortcut(_:modifiers:localization:)","externalID":"s:7SwiftUI4ViewPAAE16keyboardShortcut_9modifiers12localizationQrAA13KeyEquivalentV_AA14EventModifiersVAA08KeyboardE0V12LocalizationVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"keyboardShortcut"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"modifiers","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14EventModifiersV","text":"EventModifiers"},{"text":", ","kind":"text"},{"text":"localization","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Localization","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV12LocalizationV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:localization:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:modifiers:localization:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"keyboardShortcut","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier","text":"KeyEquivalent"},{"kind":"text","text":", "},{"text":"modifiers","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"EventModifiers","preciseIdentifier":"s:7SwiftUI14EventModifiersV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"localization","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"kind":"text","text":"."},{"text":"Localization","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV12LocalizationV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"keyboardShortcut(_:modifiers:localization:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:localization:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:localization:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:).json new file mode 100644 index 0000000..df48bfe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardType(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardtype(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.keyboardType(_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"symbolKind":"method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE12keyboardTypeyQrSo010UIKeyboardE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"keyboardType(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"keyboardType"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@E@UIKeyboardType","text":"UIKeyboardType","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"13.0","beta":false,"name":"tvOS","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"keyboardType","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"type","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@E@UIKeyboardType","text":"UIKeyboardType","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardType(_:)":{"role":"symbol","kind":"symbol","title":"keyboardType(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyboardType","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@UIKeyboardType","text":"UIKeyboardType"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardtype(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardType(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:).json new file mode 100644 index 0000000..fa455cf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:repeating:content:keyframes:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.keyframeAnimator(initialValue:repeating:content:keyframes:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"initialValue","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"repeating","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true, "},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> some "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"text":"KeyframesBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI16KeyframesBuilderV"},{"kind":"text","text":"<"},{"text":"Value","kind":"typeIdentifier"},{"text":">","kind":"text"},{"kind":"text","text":" "},{"kind":"externalParam","text":"keyframes"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9KeyframesP","text":"Keyframes"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","introducedAt":"17.0","unavailable":false,"beta":false,"deprecated":false},{"introducedAt":"10.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE16keyframeAnimator12initialValue9repeating7content9keyframesQrqd___Sbqd_0_AA018PlaceholderContentC0VyxG_qd__tYbcqd_1_qd__ct0G0Qyd_1_Rsd__AaBRd_0_AA9KeyframesRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"initialValue","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":", "},{"text":"repeating","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"text":"keyframes","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI9KeyframesP","text":"Keyframes","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"keyframeAnimator(initialValue:repeating:content:keyframes:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:repeating:content:keyframes:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyframeAnimator(initialValue:repeating:content:keyframes:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"initialValue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":", ","kind":"text"},{"text":"repeating","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"keyframes"},{"text":": (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI9KeyframesP","kind":"typeIdentifier","text":"Keyframes"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:repeating:content:keyframes:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:repeating:content:keyframes:)","title":"keyframeAnimator(initialValue:repeating:content:keyframes:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:).json new file mode 100644 index 0000000..52f6350 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE16keyframeAnimator12initialValue7trigger7content9keyframesQrqd___qd_0_qd_1_AA018PlaceholderContentC0VyxG_qd__tYbcqd_2_qd__ct0G0Qyd_2_Rsd__SQRd_0_AaBRd_1_AA9KeyframesRd_2_r2_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"keyframeAnimator"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"initialValue"},{"kind":"text","text":": "},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"trigger","kind":"externalParam"},{"text":": some ","kind":"text"},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"keyframes"},{"text":": (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI9KeyframesP","kind":"typeIdentifier","text":"Keyframes"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"keyframeAnimator(initialValue:trigger:content:keyframes:)","roleHeading":"Instance Method","role":"symbol","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0","name":"iOS"},{"name":"macOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0"}]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.keyframeAnimator(initialValue:trigger:content:keyframes:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"keyframeAnimator"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"initialValue"},{"kind":"text","text":": "},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"text":"KeyframesBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI16KeyframesBuilderV"},{"text":"<","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":">","kind":"text"},{"text":" ","kind":"text"},{"text":"keyframes","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"text":"Keyframes","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9KeyframesP"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:trigger:content:keyframes:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:trigger:content:keyframes:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyframeAnimator(initialValue:trigger:content:keyframes:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Value"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"initialValue"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"trigger","kind":"externalParam"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"keyframes"},{"text":": (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9KeyframesP","text":"Keyframes"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"keyframeAnimator(initialValue:trigger:content:keyframes:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:trigger:content:keyframes:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:trigger:content:keyframes:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:).json new file mode 100644 index 0000000..516bd13 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/labeledcontentstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"labeledContentStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"16.0","deprecated":false,"unavailable":false},{"introducedAt":"9.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"labeledContentStyle(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE19labeledContentStyleyQrqd__AA07LabeledeF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"labeledContentStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"LabeledContentStyle","preciseIdentifier":"s:7SwiftUI19LabeledContentStyleP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labeledContentStyle(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.labeledContentStyle(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labeledContentStyle(_:)":{"title":"labeledContentStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labeledcontentstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"labeledContentStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labeledContentStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelshidden().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelshidden().json new file mode 100644 index 0000000..666f8fe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelshidden().json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS"},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15","unavailable":false},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS"}],"title":"labelsHidden()","externalID":"s:7SwiftUI4ViewPAAE12labelsHiddenQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"labelsHidden","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelsHidden()"},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.labelsHidden()"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"labelsHidden"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/labelshidden()"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labelsHidden()":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labelshidden()","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"labelsHidden","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelsHidden()","kind":"symbol","title":"labelsHidden()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:).json new file mode 100644 index 0000000..aeda765 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.labelStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelStyle(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"labelStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"LabelStyle","preciseIdentifier":"s:7SwiftUI10LabelStyleP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/labelstyle(_:)"]}],"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"labelStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","role":"symbol","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"14.0","deprecated":false,"beta":false},{"introducedAt":"11.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"introducedAt":"7.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE10labelStyleyQrqd__AA05LabelE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"labelStyle(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labelStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labelstyle(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelStyle(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"labelStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"labelStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:).json new file mode 100644 index 0000000..751e0ac --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"layerEffect","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"shader"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader"},{"text":", ","kind":"text"},{"text":"maxSampleOffset","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGSize","preciseIdentifier":"c:@S@CGSize"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layerEffect(_:maxSampleOffset:isEnabled:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/layereffect(_:maxsampleoffset:isenabled:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"layerEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Shader","preciseIdentifier":"s:7SwiftUI6ShaderV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maxSampleOffset","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@S@CGSize","kind":"typeIdentifier","text":"CGSize"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE11layerEffect_15maxSampleOffset9isEnabledQrAA6ShaderV_So6CGSizeVSbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0"},{"unavailable":false,"deprecated":false,"name":"macOS","beta":false,"introducedAt":"14.0"},{"deprecated":false,"introducedAt":"17.0","unavailable":false,"name":"tvOS","beta":false}],"symbolKind":"method","title":"layerEffect(_:maxSampleOffset:isEnabled:)","roleHeading":"Instance Method"},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.layerEffect(_:maxSampleOffset:isEnabled:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layerEffect(_:maxSampleOffset:isEnabled:)":{"title":"layerEffect(_:maxSampleOffset:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layereffect(_:maxsampleoffset:isenabled:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"layerEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI6ShaderV","kind":"typeIdentifier","text":"Shader"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSampleOffset"},{"kind":"text","text":": "},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layerEffect(_:maxSampleOffset:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:).json new file mode 100644 index 0000000..0f709d3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutDirectionBehavior(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"layoutDirectionBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23LayoutDirectionBehaviorO","text":"LayoutDirectionBehavior"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","introducedAt":"17.0","beta":false,"deprecated":false,"unavailable":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"17.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"10.0"}],"externalID":"s:7SwiftUI4ViewPAAE23layoutDirectionBehavioryQrAA06LayouteF0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"layoutDirectionBehavior(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.layoutDirectionBehavior(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/layoutdirectionbehavior(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"layoutDirectionBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"behavior"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23LayoutDirectionBehaviorO","text":"LayoutDirectionBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutDirectionBehavior(_:)":{"title":"layoutDirectionBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutdirectionbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"layoutDirectionBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23LayoutDirectionBehaviorO","kind":"typeIdentifier","text":"LayoutDirectionBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutDirectionBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:).json new file mode 100644 index 0000000..aa32215 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/layoutpriority(_:)"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutPriority(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"layoutPriority"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.layoutPriority(_:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"layoutPriority"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"layoutPriority(_:)","externalID":"s:7SwiftUI4ViewPAAE14layoutPriorityyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"10.15","name":"macOS"},{"beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false}],"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","symbolKind":"method"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutPriority(_:)":{"title":"layoutPriority(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutPriority(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutpriority(_:)","type":"topic","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"layoutPriority","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:).json new file mode 100644 index 0000000..92c0f45 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"layoutValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"key","kind":"externalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"LayoutValueKey","preciseIdentifier":"s:7SwiftUI14LayoutValueKeyP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE11layoutValue3key5valueQrqd__m_0E0Qyd__tAA06LayoutE3KeyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"16.0","name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"9.0","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"layoutValue"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"layoutValue(key:value:)"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutValue(key:value:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.layoutValue(key:value:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/layoutvalue(key:value:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutValue(key:value:)":{"title":"layoutValue(key:value:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutvalue(key:value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"layoutValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutValue(key:value:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:).json new file mode 100644 index 0000000..ae59376 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lineLimit"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"number","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE9lineLimityQrSiSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lineLimit","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","title":"lineLimit(_:)","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15","name":"macOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS"}]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.lineLimit(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineLimit(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lineLimit","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"lineLimit(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:).json new file mode 100644 index 0000000..4c87b72 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"lineLimit(_:reservesSpace:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE9lineLimit_13reservesSpaceQrSi_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"16.0"},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"16.0","deprecated":false,"name":"tvOS","beta":false},{"beta":false,"unavailable":false,"introducedAt":"9.0","deprecated":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lineLimit","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"reservesSpace","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.lineLimit(_:reservesSpace:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:reservesspace:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:reservesSpace:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lineLimit"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"limit","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"reservesSpace"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineLimit(_:reservesSpace:)":{"title":"lineLimit(_:reservesSpace:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:reservesspace:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lineLimit"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"reservesSpace"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:reservesSpace:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linespacing(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linespacing(_:).json new file mode 100644 index 0000000..a79dd4d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/linespacing(_:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"extendedModule":"SwiftUI","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","deprecated":false,"introducedAt":"6.0","unavailable":false,"beta":false}],"role":"symbol","symbolKind":"method","title":"lineSpacing(_:)","externalID":"s:7SwiftUI4ViewPAAE11lineSpacingyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lineSpacing","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineSpacing(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.lineSpacing(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lineSpacing","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"lineSpacing"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/linespacing(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineSpacing(_:)":{"title":"lineSpacing(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linespacing(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lineSpacing","kind":"identifier"},{"kind":"text","text":"("},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineSpacing(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0.json new file mode 100644 index 0000000..0710b5d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0.json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","platforms":[{"introducedAt":"14.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"deprecated":false,"introducedAt":"11.0","name":"macOS","unavailable":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"introducedAt":"7.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12listItemTintyQrAA04ListeF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"listItemTint(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"listItemTint","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI12ListItemTintV","text":"ListItemTint","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.listItemTint(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"listItemTint","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"tint","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"ListItemTint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12ListItemTintV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-730o0"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-730o0"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listItemTint(_:)-730o0":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-730o0","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-730o0","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listItemTint"},{"kind":"text","text":"("},{"text":"ListItemTint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12ListItemTintV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","type":"topic","title":"listItemTint(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri.json new file mode 100644 index 0000000..07ed519 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri.json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"14.0","unavailable":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"11.0","name":"macOS"},{"introducedAt":"14.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"introducedAt":"7.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE12listItemTintyQrAA5ColorVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"listItemTint(_:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","extendedModule":"SwiftUI","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"listItemTint"},{"kind":"text","text":"("},{"text":"Color","preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.listItemTint(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-9oyri"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-9oyri"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listItemTint","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"tint","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Color","preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listItemTint(_:)-9oyri":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-9oyri","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-9oyri","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listItemTint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"listItemTint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:).json new file mode 100644 index 0000000..ec9136b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.listRowBackground(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowBackground"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"view"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listrowbackground(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowBackground(_:)"},"kind":"symbol","metadata":{"roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listRowBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"10.15","beta":false},{"introducedAt":"13.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"6.0"}],"title":"listRowBackground(_:)","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE17listRowBackgroundyQrqd__SgAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowBackground(_:)":{"title":"listRowBackground(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowbackground(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowBackground"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowBackground(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:).json new file mode 100644 index 0000000..ba2756c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowInsets(_:)"},"metadata":{"title":"listRowInsets(_:)","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"introducedAt":"10.15","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS","beta":false},{"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowInsets"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"EdgeInsets","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE13listRowInsetsyQrAA04EdgeF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.listRowInsets(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowInsets"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"insets","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier","text":"EdgeInsets"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listrowinsets(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowInsets(_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowinsets(_:)","title":"listRowInsets(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowInsets(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowInsets"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier","text":"EdgeInsets"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:).json new file mode 100644 index 0000000..edf15f7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparator(_:edges:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.listRowSeparator(_:edges:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"listRowSeparator","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"visibility","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"edges"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier","text":"VerticalEdge"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":" = .all) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE16listRowSeparator_5edgesQrAA10VisibilityO_AA12VerticalEdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"listRowSeparator(_:edges:)","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowSeparator"},{"text":"(","kind":"text"},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"edges"},{"text":": ","kind":"text"},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparator(_:edges:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSeparator(_:edges:)":{"role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listRowSeparator","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparator(_:edges:)","title":"listRowSeparator(_:edges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparator(_:edges:)","type":"topic","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:).json new file mode 100644 index 0000000..6291451 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowSeparatorTint"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"color","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"edges"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","text":"VerticalEdge"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"text":" = .all) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparatorTint(_:edges:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparatortint(_:edges:)"]}],"kind":"symbol","metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE20listRowSeparatorTint_5edgesQrAA5ColorVSg_AA12VerticalEdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"listRowSeparatorTint(_:edges:)","role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowSeparatorTint"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"kind":"text","text":"?, "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","text":"VerticalEdge"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"13.0"}]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.listRowSeparatorTint(_:edges:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSeparatorTint(_:edges:)":{"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparatorTint(_:edges:)","title":"listRowSeparatorTint(_:edges:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listRowSeparatorTint","kind":"identifier"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"kind":"text","text":"?, "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparatortint(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:).json new file mode 100644 index 0000000..6c4bd68 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listrowspacing(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSpacing(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.listRowSpacing(_:)"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowSpacing"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"spacing","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE14listRowSpacingyQr14CoreFoundation7CGFloatVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","role":"symbol","symbolKind":"method","title":"listRowSpacing(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listRowSpacing","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSpacing(_:)":{"type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowSpacing"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowspacing(_:)","role":"symbol","title":"listRowSpacing(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSpacing(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:).json new file mode 100644 index 0000000..731d992 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0","name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false}],"role":"symbol","symbolKind":"method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listSectionSeparator","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"text":"edges","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"VerticalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"listSectionSeparator(_:edges:)","externalID":"s:7SwiftUI4ViewPAAE20listSectionSeparator_5edgesQrAA10VisibilityO_AA12VerticalEdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.listSectionSeparator(_:edges:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"listSectionSeparator","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"visibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"kind":"text","text":": "},{"text":"VerticalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":" = .all) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparator(_:edges:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparator(_:edges:)"]}],"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSeparator(_:edges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparator(_:edges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparator(_:edges:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSeparator"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"listSectionSeparator(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:).json new file mode 100644 index 0000000..66f3857 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"listSectionSeparatorTint(_:edges:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"listSectionSeparatorTint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?, ","kind":"text"},{"text":"edges","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"15.0","unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"macOS"}],"externalID":"s:7SwiftUI4ViewPAAE24listSectionSeparatorTint_5edgesQrAA5ColorVSg_AA12VerticalEdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.listSectionSeparatorTint(_:edges:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparatorTint(_:edges:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSeparatorTint"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"color","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"kind":"text","text":"?, "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":" = .all) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparatortint(_:edges:)"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSeparatorTint(_:edges:)":{"abstract":[],"title":"listSectionSeparatorTint(_:edges:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparatorTint(_:edges:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSeparatorTint"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?, ","kind":"text"},{"text":"edges","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparatortint(_:edges:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l.json new file mode 100644 index 0000000..71eafea --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"role":"symbol","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"10.0"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE18listSectionSpacingyQrAA04ListeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSpacing"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18ListSectionSpacingV","kind":"typeIdentifier","text":"ListSectionSpacing"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","title":"listSectionSpacing(_:)"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-1297l","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.listSectionSpacing(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-1297l"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSpacing"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"spacing"},{"text":": ","kind":"text"},{"text":"ListSectionSpacing","preciseIdentifier":"s:7SwiftUI18ListSectionSpacingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSpacing(_:)-1297l":{"title":"listSectionSpacing(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-1297l","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listSectionSpacing","kind":"identifier"},{"kind":"text","text":"("},{"text":"ListSectionSpacing","preciseIdentifier":"s:7SwiftUI18ListSectionSpacingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-1297l","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f.json new file mode 100644 index 0000000..ff1e3b4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listSectionSpacing","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"spacing","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-71o7f"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.listSectionSpacing(_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"listSectionSpacing(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listSectionSpacing","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18listSectionSpacingyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"17.0","beta":false,"unavailable":false,"deprecated":false,"name":"iOS"},{"beta":false,"introducedAt":"10.0","deprecated":false,"unavailable":false,"name":"watchOS"}],"symbolKind":"method","extendedModule":"SwiftUI"},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-71o7f"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSpacing(_:)-71o7f":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-71o7f","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listSectionSpacing","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"listSectionSpacing(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-71o7f","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/liststyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/liststyle(_:).json new file mode 100644 index 0000000..7fa810c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/liststyle(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listStyle(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ListStyle","preciseIdentifier":"s:7SwiftUI9ListStyleP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/liststyle(_:)"]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"listStyle(_:)","platforms":[{"name":"iOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"introducedAt":"10.15","name":"macOS","unavailable":false,"beta":false,"deprecated":false},{"introducedAt":"13.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE9listStyleyQrqd__AA04ListE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.listStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listStyle(_:)":{"kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"listStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"listStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/liststyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha().json new file mode 100644 index 0000000..ce8b72d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha().json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/luminanceToAlpha()"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"luminanceToAlpha"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"luminanceToAlpha","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"luminanceToAlpha()","roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE16luminanceToAlphaQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"13.0","unavailable":false},{"deprecated":false,"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15"},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"name":"watchOS","beta":false,"introducedAt":"6.0","unavailable":false,"deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/luminancetoalpha()"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.luminanceToAlpha()","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/luminanceToAlpha()":{"title":"luminanceToAlpha()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/luminancetoalpha()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"luminanceToAlpha"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/luminanceToAlpha()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(_:).json new file mode 100644 index 0000000..46c0622 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"mask"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Mask"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"mask","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Mask","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Mask"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.mask(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/mask(_:)"]}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use overload where mask accepts a @ViewBuilder instead."}],"type":"paragraph"}],"metadata":{"role":"symbol","roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"deprecatedAt":"100000.0","introducedAt":"13.0","message":"Use overload where mask accepts a @ViewBuilder instead.","deprecated":false,"unavailable":false},{"deprecatedAt":"100000.0","deprecated":false,"introducedAt":"10.15","beta":false,"unavailable":false,"message":"Use overload where mask accepts a @ViewBuilder instead.","name":"macOS"},{"beta":false,"deprecatedAt":"100000.0","name":"tvOS","message":"Use overload where mask accepts a @ViewBuilder instead.","unavailable":false,"deprecated":false,"introducedAt":"13.0"},{"name":"watchOS","deprecated":false,"deprecatedAt":"100000.0","beta":false,"introducedAt":"6.0","message":"Use overload where mask accepts a @ViewBuilder instead.","unavailable":false}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE4maskyQrqd__AaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"mask","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Mask","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Mask"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","title":"mask(_:)"},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/mask(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/mask(_:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"mask","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Mask"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Mask"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"mask(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:).json new file mode 100644 index 0000000..6fdf485 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:).json @@ -0,0 +1 @@ +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"mask","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Mask"},{"kind":"text","text":">("},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":" = .center, ","kind":"text"},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"mask","kind":"internalParam"},{"kind":"text","text":": () -> "},{"text":"Mask","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Mask"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.mask(alignment:_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"platforms":[{"introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0"},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","beta":false,"introducedAt":"8.0","deprecated":false,"unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE4mask9alignment_QrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"mask","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Mask"},{"kind":"text","text":">("},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"text":", () -> ","kind":"text"},{"text":"Mask","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"mask(alignment:_:)"},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(alignment:_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/mask(alignment:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/mask(alignment:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/mask(alignment:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(alignment:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"mask"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Mask"},{"kind":"text","text":">("},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"kind":"typeIdentifier","text":"Mask"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"mask(alignment:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:).json new file mode 100644 index 0000000..e39d929 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"matchedGeometryEffect","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"kind":"text","text":" "},{"text":"namespace","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI25MatchedGeometryPropertiesV","text":"MatchedGeometryProperties","kind":"typeIdentifier"},{"text":" = .frame, ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":" = .center, "},{"kind":"externalParam","text":"isSource"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/matchedgeometryeffect(id:in:properties:anchor:issource:)"]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.matchedGeometryEffect(id:in:properties:anchor:isSource:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"matchedGeometryEffect(id:in:properties:anchor:isSource:)","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE21matchedGeometryEffect2id2in10properties6anchor8isSourceQrqd___AA9NamespaceV2IDVAA07MatchedE10PropertiesVAA9UnitPointVSbtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"matchedGeometryEffect","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"id"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"text":"Namespace","preciseIdentifier":"s:7SwiftUI9NamespaceV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ID","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"properties"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MatchedGeometryPropertiesV","text":"MatchedGeometryProperties"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isSource","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"11.0"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"tvOS"},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"7.0","unavailable":false}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/matchedGeometryEffect(id:in:properties:anchor:isSource:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/matchedGeometryEffect(id:in:properties:anchor:isSource:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/matchedGeometryEffect(id:in:properties:anchor:isSource:)","abstract":[],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/matchedgeometryeffect(id:in:properties:anchor:issource:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"matchedGeometryEffect","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ID"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Namespace","preciseIdentifier":"s:7SwiftUI9NamespaceV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"kind":"text","text":", "},{"text":"properties","kind":"externalParam"},{"kind":"text","text":": "},{"text":"MatchedGeometryProperties","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MatchedGeometryPropertiesV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSource"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"matchedGeometryEffect(id:in:properties:anchor:isSource:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:).json new file mode 100644 index 0000000..134bf82 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuActionDismissBehavior(_:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE25menuActionDismissBehavioryQrAA04MenuefG0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"menuActionDismissBehavior","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MenuActionDismissBehaviorV","text":"MenuActionDismissBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"introducedAt":"16.4","unavailable":false,"name":"iOS"},{"beta":false,"deprecated":false,"unavailable":false,"name":"macOS","introducedAt":"13.3"},{"name":"tvOS","introducedAt":"16.4","unavailable":false,"deprecated":false,"beta":false},{"beta":false,"name":"watchOS","introducedAt":"9.4","unavailable":false,"deprecated":false}],"title":"menuActionDismissBehavior(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.menuActionDismissBehavior(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"menuActionDismissBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"behavior","kind":"internalParam"},{"kind":"text","text":": "},{"text":"MenuActionDismissBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MenuActionDismissBehaviorV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/menuactiondismissbehavior(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuActionDismissBehavior(_:)":{"title":"menuActionDismissBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuactiondismissbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"menuActionDismissBehavior","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MenuActionDismissBehaviorV","text":"MenuActionDismissBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuActionDismissBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:).json new file mode 100644 index 0000000..fb6d3aa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuIndicator(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/menuindicator(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.menuIndicator(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"menuIndicator","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"visibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"metadata":{"platforms":[{"name":"iOS","deprecated":false,"beta":false,"introducedAt":"15.0","unavailable":false},{"unavailable":false,"introducedAt":"12.0","deprecated":false,"beta":false,"name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"17.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"menuIndicator"},{"text":"(","kind":"text"},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"menuIndicator(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE13menuIndicatoryQrAA10VisibilityOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuIndicator(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIndicator"},{"kind":"text","text":"("},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuIndicator(_:)","abstract":[],"role":"symbol","kind":"symbol","title":"menuIndicator(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuindicator(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuorder(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuorder(_:).json new file mode 100644 index 0000000..8904273 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menuorder(_:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuOrder(_:)"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuOrder"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"order","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"MenuOrder","preciseIdentifier":"s:7SwiftUI9MenuOrderV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.menuOrder(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/menuorder(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"16.0"},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"macOS"},{"introducedAt":"16.0","deprecated":false,"name":"tvOS","beta":false,"unavailable":false},{"deprecated":false,"introducedAt":"9.0","unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE9menuOrderyQrAA04MenuE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"menuOrder","kind":"identifier"},{"kind":"text","text":"("},{"text":"MenuOrder","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9MenuOrderV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","symbolKind":"method","title":"menuOrder(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuOrder(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuorder(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"menuOrder","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI9MenuOrderV","text":"MenuOrder","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuOrder(_:)","kind":"symbol","title":"menuOrder(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menustyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menustyle(_:).json new file mode 100644 index 0000000..ab16856 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/menustyle(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"menuStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9MenuStyleP","kind":"typeIdentifier","text":"MenuStyle"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.menuStyle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuStyle(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"menuStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"name":"iOS","unavailable":false,"introducedAt":"14.0","beta":false,"deprecated":false},{"deprecated":false,"introducedAt":"11.0","unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","title":"menuStyle(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE9menuStyleyQrqd__AA04MenuE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/menustyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuStyle(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"menuStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menustyle(_:)","type":"topic","kind":"symbol","role":"symbol","abstract":[],"title":"menuStyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:).json new file mode 100644 index 0000000..af10d69 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/minimumscalefactor(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/minimumScaleFactor(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.minimumScaleFactor(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"title":"minimumScaleFactor(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"6.0","unavailable":false,"beta":false}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE18minimumScaleFactoryQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","extendedModule":"SwiftUI","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"minimumScaleFactor"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"minimumScaleFactor"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"factor","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/minimumScaleFactor(_:)":{"title":"minimumScaleFactor(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/minimumscalefactor(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"minimumScaleFactor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/minimumScaleFactor(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/modifier(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/modifier(_:).json new file mode 100644 index 0000000..2f17ff6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/modifier(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/modifier(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"modifier(_:)","externalID":"s:7SwiftUI4ViewPAAE8modifieryAA15ModifiedContentVyxqd__Gqd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"text":">","kind":"text"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"13.0","unavailable":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"10.15"},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false}],"role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.modifier(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/modifier(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"modifier"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":">"}]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/modifier(_:)":{"title":"modifier(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/modifier(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/modifier(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaced(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaced(_:).json new file mode 100644 index 0000000..1d1d4ad --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaced(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.monospaced(_:)"},{"type":"text","text":"."}],"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"monospaced"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","title":"monospaced(_:)","externalID":"s:7SwiftUI4ViewPAAE10monospacedyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"name":"iOS","introducedAt":"16.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0","name":"tvOS"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"9.0","beta":false}],"symbolKind":"method"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospaced(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"monospaced"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isActive"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/monospaced(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/monospaced(_:)":{"title":"monospaced(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/monospaced(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"monospaced","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospaced(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaceddigit().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaceddigit().json new file mode 100644 index 0000000..827f7e3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/monospaceddigit().json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospacedDigit()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.monospacedDigit()"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"monospacedDigit","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"monospacedDigit()","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"15.0","unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"12.0","name":"macOS"},{"unavailable":false,"introducedAt":"15.0","beta":false,"deprecated":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"name":"watchOS","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE15monospacedDigitQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"monospacedDigit","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/monospaceddigit()"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/monospacedDigit()":{"title":"monospacedDigit()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/monospaceddigit()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"monospacedDigit","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospacedDigit()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:).json new file mode 100644 index 0000000..c2a23a1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/moveDisabled(_:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"moveDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isDisabled"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.moveDisabled(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/movedisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12moveDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"moveDisabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"moveDisabled(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"13.0"},{"unavailable":false,"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS"},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"tvOS"},{"introducedAt":"6.0","unavailable":false,"deprecated":false,"beta":false,"name":"watchOS"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/moveDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/movedisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/moveDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDisabled"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"moveDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:).json new file mode 100644 index 0000000..b683d4a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.multilineTextAlignment(_:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/multilinetextalignment(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","name":"iOS","unavailable":false,"deprecated":false,"beta":false},{"unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false,"name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"introducedAt":"6.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"multilineTextAlignment"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"TextAlignment","preciseIdentifier":"s:7SwiftUI13TextAlignmentO"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE22multilineTextAlignmentyQrAA0eF0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"multilineTextAlignment(_:)","extendedModule":"SwiftUI","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multilineTextAlignment","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"TextAlignment","preciseIdentifier":"s:7SwiftUI13TextAlignmentO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/multilineTextAlignment(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/multilineTextAlignment(_:)":{"title":"multilineTextAlignment(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/multilinetextalignment(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multilineTextAlignment"},{"kind":"text","text":"("},{"text":"TextAlignment","preciseIdentifier":"s:7SwiftUI13TextAlignmentO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/multilineTextAlignment(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:).json new file mode 100644 index 0000000..c1fadde --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarBackButtonHidden(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationBarBackButtonHidden(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarbackbuttonhidden(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarBackButtonHidden","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"hidesBackButton"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE29navigationBarBackButtonHiddenyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"navigationBarBackButtonHidden(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarBackButtonHidden","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"introducedAt":"13.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"6.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarBackButtonHidden(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarBackButtonHidden"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarbackbuttonhidden(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarBackButtonHidden(_:)","abstract":[],"title":"navigationBarBackButtonHidden(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:).json new file mode 100644 index 0000000..fedcfad --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:).json @@ -0,0 +1 @@ +{"deprecationSummary":[{"inlineContent":[{"text":"Use toolbar(.hidden)","type":"text"}],"type":"paragraph"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationBarHidden(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarHidden"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"hidden"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarhidden(_:)"]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarHidden(_:)","interfaceLanguage":"swift"},"metadata":{"role":"symbol","roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"beta":false,"introducedAt":"13.0","unavailable":false,"deprecatedAt":"100000.0","name":"iOS","message":"Use toolbar(.hidden)"},{"deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","message":"Use toolbar(.hidden)","beta":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"name":"watchOS","deprecated":false,"message":"Use toolbar(.hidden)","deprecatedAt":"100000.0","introducedAt":"6.0","beta":false},{"deprecated":false,"introducedAt":"1.0","beta":false,"name":"visionOS","deprecatedAt":"100000.0","message":"Use toolbar(.hidden)","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE19navigationBarHiddenyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarHidden","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"navigationBarHidden(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarHidden(_:)":{"title":"navigationBarHidden(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarhidden(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarHidden"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarHidden(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:).json new file mode 100644 index 0000000..4d7a6d5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarItems"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"leading"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE18navigationBarItems7leadingQrqd___tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","title":"navigationBarItems(leading:)","platforms":[{"beta":false,"deprecated":false,"name":"iOS","deprecatedAt":"100000.0","introducedAt":"13.0","unavailable":false,"message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement"},{"beta":false,"name":"tvOS","introducedAt":"13.0","unavailable":false,"deprecated":false,"message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","deprecatedAt":"100000.0"},{"message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","beta":false,"introducedAt":"1.0","unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","name":"visionOS"}],"symbolKind":"method","role":"symbol"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationBarItems","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"leading","kind":"externalParam"},{"kind":"text","text":": "},{"text":"L","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement"}],"type":"paragraph"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:)"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationBarItems(leading:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(leading:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarItems","kind":"identifier"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"leading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"navigationBarItems(leading:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:).json new file mode 100644 index 0000000..20000eb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:trailing:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationBarItems(leading:trailing:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:trailing:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarItems"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"leading"},{"kind":"text","text":": "},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"trailing","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"L","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarItems"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"leading"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"trailing","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","role":"symbol","title":"navigationBarItems(leading:trailing:)","externalID":"s:7SwiftUI4ViewPAAE18navigationBarItems7leading8trailingQrqd___qd_0_tAaBRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"deprecatedAt":"100000.0","introducedAt":"13.0","name":"iOS","message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement"},{"beta":false,"deprecatedAt":"100000.0","name":"tvOS","message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","deprecated":false,"introducedAt":"13.0","unavailable":false},{"deprecatedAt":"100000.0","beta":false,"deprecated":false,"introducedAt":"1.0","name":"visionOS","message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","unavailable":false}],"extendedModule":"SwiftUI"},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","type":"text"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(leading:trailing:)":{"title":"navigationBarItems(leading:trailing:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:trailing:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarItems","kind":"identifier"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"leading","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"trailing","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:trailing:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:).json new file mode 100644 index 0000000..e6122f4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(trailing:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"metadata":{"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18navigationBarItems8trailingQrqd___tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"beta":false,"introducedAt":"13.0","unavailable":false,"deprecatedAt":"100000.0","name":"iOS","message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement"},{"beta":false,"unavailable":false,"message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","deprecated":false,"introducedAt":"13.0","name":"tvOS","deprecatedAt":"100000.0"},{"deprecatedAt":"100000.0","message":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement","introducedAt":"1.0","beta":false,"name":"visionOS","deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","title":"navigationBarItems(trailing:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarItems","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"trailing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarItems","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"trailing"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use toolbar(_:) with navigationBarLeading or navigationBarTrailing placement"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationBarItems(trailing:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(trailing:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(trailing:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(trailing:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(trailing:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarItems"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"trailing"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"navigationBarItems(trailing:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb.json new file mode 100644 index 0000000..8d3f0d0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-2tvbb"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationBarTitle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarTitle"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"titleKey"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecatedAt":"100000.0","renamed":"navigationTitle(_:)","introducedAt":"13.0","beta":false,"deprecated":false,"unavailable":false,"name":"iOS"},{"unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","introducedAt":"13.0","beta":false,"renamed":"navigationTitle(_:)","name":"tvOS"},{"deprecated":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS","beta":false,"deprecatedAt":"100000.0","renamed":"navigationTitle(_:)"},{"deprecated":false,"unavailable":false,"deprecatedAt":"100000.0","renamed":"navigationTitle(_:)","introducedAt":"1.0","name":"visionOS","beta":false}],"roleHeading":"Instance Method","title":"navigationBarTitle(_:)","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-2tvbb"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-2tvbb":{"title":"navigationBarTitle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-2tvbb","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-2tvbb","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq.json new file mode 100644 index 0000000..621615b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitleyQrAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"navigationBarTitle(_:)","platforms":[{"renamed":"navigationTitle(_:)","beta":false,"deprecated":false,"name":"iOS","deprecatedAt":"100000.0","unavailable":false,"introducedAt":"13.0"},{"unavailable":false,"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"13.0","renamed":"navigationTitle(_:)","deprecatedAt":"100000.0"},{"unavailable":false,"name":"watchOS","deprecatedAt":"100000.0","introducedAt":"6.0","deprecated":false,"renamed":"navigationTitle(_:)","beta":false},{"deprecated":false,"name":"visionOS","introducedAt":"1.0","renamed":"navigationTitle(_:)","unavailable":false,"deprecatedAt":"100000.0","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarTitle","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-8f9fq","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationBarTitle(_:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-8f9fq"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-8f9fq":{"deprecated":true,"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","role":"symbol","title":"navigationBarTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-8f9fq","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-8f9fq"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey.json new file mode 100644 index 0000000..5e3281c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-90yey"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationBarTitle(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-90yey"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"deprecatedAt":"100000.0","name":"iOS","renamed":"navigationTitle(_:)","introducedAt":"13.0"},{"introducedAt":"13.0","deprecated":false,"name":"tvOS","unavailable":false,"deprecatedAt":"100000.0","renamed":"navigationTitle(_:)","beta":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"deprecatedAt":"100000.0","introducedAt":"6.0","renamed":"navigationTitle(_:)"},{"introducedAt":"1.0","renamed":"navigationTitle(_:)","deprecatedAt":"100000.0","unavailable":false,"name":"visionOS","beta":false,"deprecated":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"navigationBarTitle(_:)","externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitleyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-90yey":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-90yey","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-90yey","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"navigationBarTitle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy.json new file mode 100644 index 0000000..52c7635 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-4o2oy","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"titleKey","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"displayMode","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","text":"TitleDisplayMode","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"deprecatedAt":"100000.0","name":"iOS","message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","introducedAt":"13.0","deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"1.0","name":"visionOS","deprecatedAt":"100000.0","message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"displayMode"},{"kind":"text","text":": "},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitle_11displayModeQrAA18LocalizedStringKeyV_AA010NavigationE4ItemV0f7DisplayH0OtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"navigationBarTitle(_:displayMode:)","extendedModule":"SwiftUI","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"deprecationSummary":[{"inlineContent":[{"text":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","type":"text"}],"type":"paragraph"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-4o2oy"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationBarTitle(_:displayMode:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-4o2oy":{"title":"navigationBarTitle(_:displayMode:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-4o2oy","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"displayMode","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-4o2oy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf.json new file mode 100644 index 0000000..96bbb9d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationBarTitle(_:displayMode:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-5sstf"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitle_11displayModeQrAA4TextV_AA010NavigationE4ItemV0f7DisplayH0OtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","introducedAt":"13.0","beta":false,"name":"iOS","message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)"},{"deprecated":false,"message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","name":"visionOS","beta":false,"introducedAt":"1.0","deprecatedAt":"100000.0","unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","title":"navigationBarTitle(_:displayMode:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarTitle","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"text":"displayMode","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","text":"NavigationBarItem"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier","text":"TitleDisplayMode"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-5sstf","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"title","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"displayMode"},{"text":": ","kind":"text"},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)"}],"type":"paragraph"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-5sstf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"displayMode"},{"kind":"text","text":": "},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","deprecated":true,"title":"navigationBarTitle(_:displayMode:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-5sstf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-5sstf"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v.json new file mode 100644 index 0000000..81d7876 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v.json @@ -0,0 +1 @@ +{"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationBarTitle(_:displayMode:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarTitle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"title","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"displayMode","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","text":"NavigationBarItem"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","type":"text"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)","unavailable":false,"deprecatedAt":"100000.0","beta":false,"introducedAt":"14.0","name":"iOS"},{"introducedAt":"1.0","deprecatedAt":"100000.0","beta":false,"deprecated":false,"name":"visionOS","unavailable":false,"message":"Use navigationTitle(_:) with navigationBarTitleDisplayMode(_:)"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarTitle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"displayMode","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","text":"NavigationBarItem","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18navigationBarTitle_11displayModeQrqd___AA010NavigationE4ItemV0f7DisplayH0OtSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"navigationBarTitle(_:displayMode:)","symbolKind":"method","role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-7pj7v","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-7pj7v"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-7pj7v":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-7pj7v","role":"symbol","title":"navigationBarTitle(_:displayMode:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-7pj7v","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"displayMode"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","text":"NavigationBarItem","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"TitleDisplayMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:).json new file mode 100644 index 0000000..6cac134 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationBarTitleDisplayMode(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitledisplaymode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE29navigationBarTitleDisplayModeyQrAA010NavigationE4ItemV0fgH0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarTitleDisplayMode"},{"kind":"text","text":"("},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"introducedAt":"14.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","title":"navigationBarTitleDisplayMode(_:)","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitleDisplayMode(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarTitleDisplayMode","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"displayMode","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitleDisplayMode(_:)":{"title":"navigationBarTitleDisplayMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitledisplaymode(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarTitleDisplayMode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"NavigationBarItem","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitleDisplayMode(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:).json new file mode 100644 index 0000000..d748e83 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationDestination","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"destination"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Hashable","kind":"typeIdentifier","preciseIdentifier":"s:SH"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(for:destination:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"navigationDestination(for:destination:)","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE21navigationDestination3for11destinationQrqd__m_qd_0_qd__ctSHRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"16.0","unavailable":false,"beta":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"16.0","unavailable":false},{"beta":false,"introducedAt":"9.0","unavailable":false,"name":"watchOS","deprecated":false}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDestination"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"destination"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(for:destination:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationDestination(for:destination:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(for:destination:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(for:destination:)","title":"navigationDestination(for:destination:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(for:destination:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDestination"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"text":"destination","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:).json new file mode 100644 index 0000000..63e3739 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationDestination","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"destination"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDestination"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"destination","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"platforms":[{"introducedAt":"16.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"16.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"9.0"}],"externalID":"s:7SwiftUI4ViewPAAE21navigationDestination11isPresented11destinationQrAA7BindingVySbG_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"navigationDestination(isPresented:destination:)","role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(isPresented:destination:)","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(ispresented:destination:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationDestination(isPresented:destination:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(isPresented:destination:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationDestination","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"destination"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDestination(isPresented:destination:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(ispresented:destination:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(isPresented:destination:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:).json new file mode 100644 index 0000000..2a15c77 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(item:destination:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(item:destination:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationDestination(item:destination:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDestination"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Optional","kind":"typeIdentifier","preciseIdentifier":"s:Sq"},{"text":"<","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":">>, ","kind":"text"},{"text":"destination","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"17.0","unavailable":false,"deprecated":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"14.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"17.0","name":"tvOS"},{"beta":false,"introducedAt":"10.0","deprecated":false,"unavailable":false,"name":"watchOS"}],"role":"symbol","title":"navigationDestination(item:destination:)","extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE21navigationDestination4item11destinationQrAA7BindingVyqd__SgG_qd_0_qd__ctSHRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationDestination","kind":"identifier"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sq","text":"Optional"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":">>, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"destination"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":") -> ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(item:destination:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(item:destination:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(item:destination:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationDestination","kind":"identifier"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Optional","preciseIdentifier":"s:Sq","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":">>, "},{"text":"destination","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":") -> ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"navigationDestination(item:destination:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l.json new file mode 100644 index 0000000..ca62292 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationDocument(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-2ql2l"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":"navigationDocument(_:)","platforms":[{"deprecated":false,"introducedAt":"16.0","unavailable":false,"name":"iOS","beta":false},{"beta":false,"unavailable":false,"introducedAt":"13.0","deprecated":false,"name":"macOS"},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"unavailable":false,"introducedAt":"9.0","name":"watchOS","deprecated":false,"beta":false}],"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE18navigationDocumentyQrqd__16CoreTransferable0G0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-2ql2l"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"document","kind":"internalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:)-2ql2l":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDocument(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-2ql2l","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-2ql2l"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje.json new file mode 100644 index 0000000..1fd6410 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje.json @@ -0,0 +1 @@ +{"metadata":{"title":"navigationDocument(_:)","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationDocument","kind":"identifier"},{"kind":"text","text":"("},{"text":"URL","preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0","name":"iOS"},{"beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"macOS"},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"16.0"},{"introducedAt":"9.0","unavailable":false,"deprecated":false,"beta":false,"name":"watchOS"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18navigationDocumentyQr10Foundation3URLVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-4gkje"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationDocument(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-4gkje"},"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationDocument","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"url","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:)-4gkje":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-4gkje","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-4gkje","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","title":"navigationDocument(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1.json new file mode 100644 index 0000000..822f9b8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1.json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-11ys1"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-11ys1","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationDocument(_:preview:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationDocument","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"I"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"document","kind":"internalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SharePreview","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":", ","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Transferable","kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P"},{"text":", ","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"metadata":{"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"macOS"},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0"}],"extendedModule":"SwiftUI","symbolKind":"method","title":"navigationDocument(_:preview:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationDocument","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"I","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"I"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18navigationDocument_7previewQrqd___AA12SharePreviewVys5NeverOqd_0_Gt16CoreTransferable0K0Rd__AkLRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-11ys1":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"I"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s5NeverO","text":"Never","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationDocument(_:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-11ys1","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-11ys1"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345.json new file mode 100644 index 0000000..0e85523 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"navigationDocument(_:preview:)","externalID":"s:7SwiftUI4ViewPAAE18navigationDocument_7previewQrqd___AA12SharePreviewVyqd_0_s5NeverOGt16CoreTransferable0K0Rd__AkLRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"I"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview"},{"text":"<","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","platforms":[{"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0","name":"watchOS"}]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-1s345"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-1s345"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationDocument","kind":"identifier"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"I","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"document","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"text":"SharePreview","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"D","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"I","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationDocument(_:preview:)"},{"text":".","type":"text"}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-1s345":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"I"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDocument(_:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-1s345","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-1s345","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo.json new file mode 100644 index 0000000..cbc4db5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.navigationDocument(_:preview:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"navigationDocument(_:preview:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"kind":"text","text":", "},{"text":"I1","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"I2","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SharePreview","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"kind":"text","text":"<"},{"text":"I1","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"I2"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18navigationDocument_7previewQrqd___AA12SharePreviewVyqd_0_qd_1_Gt16CoreTransferable0J0Rd__AiJRd_0_AiJRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"introducedAt":"16.0","name":"iOS","deprecated":false,"beta":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"13.0","name":"macOS"},{"introducedAt":"9.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-3wrqo"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":", ","kind":"text"},{"text":"I1","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"I2"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"document"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI12SharePreviewV","kind":"typeIdentifier","text":"SharePreview"},{"text":"<","kind":"text"},{"text":"I1","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"I2"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"I1"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"I2"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Transferable","preciseIdentifier":"s:16CoreTransferable0B0P"},{"kind":"text","text":"\n"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-3wrqo","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-3wrqo":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-3wrqo","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-3wrqo","title":"navigationDocument(_:preview:)","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":", ","kind":"text"},{"text":"I1","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"I2","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SharePreview","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"text":"I1","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"I2","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc.json new file mode 100644 index 0000000..796d68f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationDocument(_:preview:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-9r1fc","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationDocument","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"document"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:16CoreTransferable0B0P","text":"Transferable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"kind":"text","text":">("},{"text":"D","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SharePreview","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5NeverO","kind":"typeIdentifier","text":"Never"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0"},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0"},{"name":"watchOS","beta":false,"introducedAt":"9.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"navigationDocument(_:preview:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE18navigationDocument_7previewQrqd___AA12SharePreviewVys5NeverOAIGt16CoreTransferable0K0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-9r1fc"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-9r1fc":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-9r1fc","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"text":"SharePreview","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s5NeverO","text":"Never","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-9r1fc","kind":"symbol","title":"navigationDocument(_:preview:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:).json new file mode 100644 index 0000000..e1f492f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"title":"navigationSplitViewColumnWidth(_:)","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"introducedAt":"16.0","unavailable":false,"deprecated":false,"name":"iOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"macOS"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"16.0","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"9.0","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE015navigationSplitC11ColumnWidthyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationSplitViewColumnWidth(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewColumnWidth(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"navigationSplitViewColumnWidth(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:).json new file mode 100644 index 0000000..a659138 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(min:ideal:max:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationSplitViewColumnWidth","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"min"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"text":"ideal","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"max"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(min:ideal:max:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE015navigationSplitC11ColumnWidth3min5ideal3maxQr14CoreFoundation7CGFloatVSg_AjKtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationSplitViewColumnWidth","kind":"identifier"},{"kind":"text","text":"("},{"text":"min","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"ideal"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"max","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"navigationSplitViewColumnWidth(min:ideal:max:)","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false},{"name":"macOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"introducedAt":"16.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"9.0","deprecated":false}]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationSplitViewColumnWidth(min:ideal:max:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewColumnWidth(min:ideal:max:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"kind":"text","text":"("},{"kind":"externalParam","text":"min"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"ideal"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"max"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationSplitViewColumnWidth(min:ideal:max:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(min:ideal:max:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(min:ideal:max:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:).json new file mode 100644 index 0000000..5d54373 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewStyle(_:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationSplitViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"NavigationSplitViewStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24NavigationSplitViewStyleP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationSplitViewStyle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"navigationSplitViewStyle(_:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false},{"beta":false,"introducedAt":"13.0","unavailable":false,"name":"macOS","deprecated":false},{"unavailable":false,"introducedAt":"16.0","name":"tvOS","beta":false,"deprecated":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0","name":"watchOS"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE015navigationSplitC5StyleyQrqd__AA010NavigationecF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewStyle(_:)":{"title":"navigationSplitViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq.json new file mode 100644 index 0000000..30d4f03 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"title":"navigationTitle(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationTitle"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","platforms":[{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0"}],"externalID":"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2cbbq","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationTitle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationTitle"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2cbbq"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-2cbbq":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationTitle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2cbbq","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2cbbq"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj.json new file mode 100644 index 0000000..d3a9625 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.navigationTitle(_:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"11.0","unavailable":false},{"name":"tvOS","unavailable":false,"introducedAt":"14.0","deprecated":false,"beta":false},{"name":"watchOS","deprecated":false,"introducedAt":"7.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"navigationTitle(_:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationTitle"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"titleKey","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2hqj"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2hqj","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-2hqj":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2hqj","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2hqj","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"navigationTitle(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i.json new file mode 100644 index 0000000..fa97fc3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-5y36i"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-5y36i"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationTitle","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"11.0","name":"macOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"14.0","name":"tvOS","deprecated":false},{"introducedAt":"7.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA4TextVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"navigationTitle(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationTitle","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.navigationTitle(_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-5y36i":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-5y36i","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-5y36i","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"navigationTitle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej.json new file mode 100644 index 0000000..28e41a0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationTitle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-9neej"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-9neej","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE15navigationTitleyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"14.0","unavailable":false,"beta":false},{"beta":false,"introducedAt":"11.0","name":"macOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"14.0","unavailable":false,"name":"tvOS","beta":false},{"unavailable":false,"introducedAt":"7.0","deprecated":false,"beta":false,"name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"navigationTitle(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationTitle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-9neej":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-9neej","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-9neej","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku.json new file mode 100644 index 0000000..96ae271 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-voku"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"navigationTitle","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"title"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-voku","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE15navigationTitleyQrAA7BindingVySSGF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationTitle","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"unavailable":false,"name":"tvOS","introducedAt":"16.0","beta":false,"deprecated":false},{"introducedAt":"9.0","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"title":"navigationTitle(_:)","extendedModule":"SwiftUI"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationTitle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-voku":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationTitle"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-voku","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-voku","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:).json new file mode 100644 index 0000000..cbf9a79 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:).json @@ -0,0 +1 @@ +{"metadata":{"title":"navigationViewStyle(_:)","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE010navigationC5StyleyQrqd__AA010NavigationcE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"message":"replace styled NavigationView with NavigationStack or NavigationSplitView instead","beta":false,"unavailable":false,"introducedAt":"13.0","deprecatedAt":"100000.0"},{"introducedAt":"10.15","unavailable":false,"name":"macOS","message":"replace styled NavigationView with NavigationStack or NavigationSplitView instead","beta":false,"deprecated":false,"deprecatedAt":"100000.0"},{"introducedAt":"13.0","beta":false,"unavailable":false,"message":"replace styled NavigationView with NavigationStack or NavigationSplitView instead","deprecatedAt":"100000.0","name":"tvOS","deprecated":false},{"unavailable":false,"message":"replace styled NavigationView with NavigationStack or NavigationSplitView instead","introducedAt":"7.0","deprecated":false,"beta":false,"deprecatedAt":"100000.0","name":"watchOS"},{"deprecatedAt":"100000.0","message":"replace styled NavigationView with NavigationStack or NavigationSplitView instead","introducedAt":"1.0","deprecated":false,"name":"visionOS","unavailable":false,"beta":false}],"role":"symbol"},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"replace styled NavigationView with NavigationStack or NavigationSplitView instead"}],"type":"paragraph"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/navigationviewstyle(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.navigationViewStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"NavigationViewStyle","preciseIdentifier":"s:7SwiftUI19NavigationViewStyleP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationViewStyle(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationViewStyle(_:)":{"abstract":[],"title":"navigationViewStyle(_:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationViewStyle(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationViewStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationviewstyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(_:).json new file mode 100644 index 0000000..7ecf479 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(_:).json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:7SwiftUI4ViewPAAE6offsetyQrSo6CGSizeVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","title":"offset(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"offset","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize","text":"CGSize"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/offset(_:)"]}],"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.offset(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/offset(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/offset(_:)","title":"offset(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(x:y:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(x:y:).json new file mode 100644 index 0000000..638a63c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/offset(x:y:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(x:y:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"6.0","name":"watchOS"}],"extendedModule":"SwiftUI","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"offset(x:y:)","externalID":"s:7SwiftUI4ViewPAAE6offset1x1yQr14CoreFoundation7CGFloatV_AItF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"x"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.offset(x:y:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/offset(x:y:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"x"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":" = 0, "},{"text":"y","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":" = 0) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/offset(x:y:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"offset"},{"text":"(","kind":"text"},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"offset(x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/offset(x:y:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(x:y:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onappear(perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onappear(perform:).json new file mode 100644 index 0000000..d9d9b34 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onappear(perform:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onAppear(perform:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","title":"onAppear(perform:)","externalID":"s:7SwiftUI4ViewPAAE8onAppear7performQryycSg_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"13.0"},{"name":"macOS","deprecated":false,"introducedAt":"10.15","unavailable":false,"beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"6.0","beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onAppear","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.onAppear(perform:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onappear(perform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onAppear"},{"kind":"text","text":"("},{"text":"perform","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"action"},{"text":": (() -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onAppear(perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onAppear","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"onAppear(perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onappear(perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onAppear(perform:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn.json new file mode 100644 index 0000000..c2a16c5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"17.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"10.0","name":"watchOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE8onChange2of7initial_Qrqd___Sbyqd___qd__tctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onChange(of:initial:_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"initial","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-302sn"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-302sn"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onChange(of:initial:_:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"text":"initial","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = false, ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:initial:_:)-302sn":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onChange","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"initial"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"onChange(of:initial:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-302sn","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-302sn","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k.json new file mode 100644 index 0000000..a027556 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onChange","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":", "},{"text":"initial","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = false, ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"action"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SQ","text":"Equatable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onChange(of:initial:_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-6p46k"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":", "},{"text":"initial","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"platforms":[{"unavailable":false,"introducedAt":"17.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"17.0","unavailable":false},{"beta":false,"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"10.0"}],"title":"onChange(of:initial:_:)","externalID":"s:7SwiftUI4ViewPAAE8onChange2of7initial_Qrqd___SbyyctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-6p46k"},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:initial:_:)-6p46k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"initial"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"onChange(of:initial:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-6p46k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-6p46k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:).json new file mode 100644 index 0000000..5f79941 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:perform:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:perform:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onChange(of:perform:)"},{"text":".","type":"text"}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use `onChange` with a two or zero parameter action closure instead."}],"type":"paragraph"}],"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"name":"iOS","deprecated":false,"deprecatedAt":"17.0","introducedAt":"14.0","unavailable":false,"message":"Use `onChange` with a two or zero parameter action closure instead."},{"deprecatedAt":"14.0","deprecated":false,"beta":false,"name":"macOS","introducedAt":"11.0","message":"Use `onChange` with a two or zero parameter action closure instead.","unavailable":false},{"introducedAt":"14.0","unavailable":false,"deprecatedAt":"17.0","beta":false,"message":"Use `onChange` with a two or zero parameter action closure instead.","name":"tvOS","deprecated":false},{"unavailable":false,"name":"watchOS","introducedAt":"7.0","beta":false,"deprecatedAt":"10.0","message":"Use `onChange` with a two or zero parameter action closure instead.","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE8onChange2of7performQrqd___yqd__ctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"onChange(of:perform:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": ("},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SQ","kind":"typeIdentifier","text":"Equatable"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onChange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"onChange(of:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:perform:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:).json new file mode 100644 index 0000000..4407eea --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinueUserActivity"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"activityType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"NSUserActivity","preciseIdentifier":"c:objc(cs)NSUserActivity"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE22onContinueUserActivity_7performQrSS_ySo06NSUserG0CctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinueUserActivity"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","extendedModule":"SwiftUI","title":"onContinueUserActivity(_:perform:)","platforms":[{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS","unavailable":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"14.0","unavailable":false},{"introducedAt":"7.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinueUserActivity(_:perform:)","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinueuseractivity(_:perform:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.onContinueUserActivity(_:perform:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinueUserActivity(_:perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinueUserActivity"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"onContinueUserActivity(_:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinueuseractivity(_:perform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinueUserActivity(_:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp.json new file mode 100644 index 0000000..875953b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-2e5rp"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onContinuousHover(coordinateSpace:perform:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"deprecationSummary":[{"inlineContent":[{"text":"use overload that accepts a CoordinateSpaceProtocol instead","type":"text"}],"type":"paragraph"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinuousHover"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"coordinateSpace"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO","text":"CoordinateSpace","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10HoverPhaseO","text":"HoverPhase","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"onContinuousHover(coordinateSpace:perform:)","extendedModule":"SwiftUI","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"deprecated":false,"message":"use overload that accepts a CoordinateSpaceProtocol instead","deprecatedAt":"100000.0","introducedAt":"16.0","beta":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"13.0","message":"use overload that accepts a CoordinateSpaceProtocol instead","unavailable":false,"deprecatedAt":"100000.0","beta":false},{"introducedAt":"16.0","name":"tvOS","deprecatedAt":"100000.0","deprecated":false,"beta":false,"message":"use overload that accepts a CoordinateSpaceProtocol instead","unavailable":false},{"beta":false,"message":"use overload that accepts a CoordinateSpaceProtocol instead","name":"visionOS","deprecated":false,"introducedAt":"1.0","unavailable":false,"deprecatedAt":"100000.0"}],"externalID":"s:7SwiftUI4ViewPAAE17onContinuousHover15coordinateSpace7performQrAA010CoordinateH0O_yAA0F5PhaseOctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinuousHover"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"coordinateSpace"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CoordinateSpace","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"text":" = .local, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"HoverPhase","preciseIdentifier":"s:7SwiftUI10HoverPhaseO"},{"text":") -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-2e5rp"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinuousHover(coordinateSpace:perform:)-2e5rp":{"title":"onContinuousHover(coordinateSpace:perform:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-2e5rp","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinuousHover"},{"text":"(","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"HoverPhase","preciseIdentifier":"s:7SwiftUI10HoverPhaseO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-2e5rp"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf.json new file mode 100644 index 0000000..ab7d4d8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onContinuousHover(coordinateSpace:perform:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onContinuousHover"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"coordinateSpace"},{"text":": some ","kind":"text"},{"text":"CoordinateSpaceProtocol","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP"},{"kind":"text","text":" = .local, "},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10HoverPhaseO","text":"HoverPhase"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-6ujjf"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-6ujjf","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","introducedAt":"17.0","deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"17.0","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE17onContinuousHover15coordinateSpace7performQrqd___yAA0F5PhaseOctAA010CoordinateH8ProtocolRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onContinuousHover(coordinateSpace:perform:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onContinuousHover","kind":"identifier"},{"text":"(","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","text":"CoordinateSpaceProtocol","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"text":"HoverPhase","preciseIdentifier":"s:7SwiftUI10HoverPhaseO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinuousHover(coordinateSpace:perform:)-6ujjf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onContinuousHover","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coordinateSpace"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP","text":"CoordinateSpaceProtocol"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10HoverPhaseO","text":"HoverPhase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"onContinuousHover(coordinateSpace:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-6ujjf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-6ujjf"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:).json new file mode 100644 index 0000000..914fd85 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDisappear(perform:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondisappear(perform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onDisappear","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"onDisappear(perform:)","symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE11onDisappear7performQryycSg_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"6.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onDisappear","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": (() -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")? = nil) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onDisappear(perform:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDisappear(perform:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDisappear(perform:)","abstract":[],"title":"onDisappear(perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondisappear(perform:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDisappear","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (() -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:).json new file mode 100644 index 0000000..3e1c8e9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onDrag(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:)"]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"13.4","name":"iOS","deprecated":false,"unavailable":false},{"introducedAt":"10.15","name":"macOS","beta":false,"deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE6onDragyQrSo14NSItemProviderCycF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onDrag(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onDrag","kind":"identifier"},{"kind":"text","text":"(() -> "},{"kind":"typeIdentifier","text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrag","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrag(_:)":{"title":"onDrag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrag"},{"text":"(() -> ","kind":"text"},{"text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:).json new file mode 100644 index 0000000..af74d6c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onDrag"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"data","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"preview"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"platforms":[{"beta":false,"unavailable":false,"deprecated":false,"name":"iOS","introducedAt":"15.0"},{"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE6onDrag_7previewQrSo14NSItemProviderCyc_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"onDrag"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">(() -> "},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"onDrag(_:preview:)","symbolKind":"method"},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onDrag(_:preview:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:preview:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:preview:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrag(_:preview:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:preview:)","title":"onDrag(_:preview:)","kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:preview:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrag","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb.json new file mode 100644 index 0000000..30d845a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4bjnb"]}],"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"text":"supportedContentTypes","kind":"internalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4bjnb","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"deprecated":false,"introducedAt":"14.0","name":"iOS","unavailable":false},{"name":"macOS","introducedAt":"11.0","beta":false,"deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSay22UniformTypeIdentifiers6UTTypeVG_AA0E8Delegate_ptF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onDrop(of:delegate:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"delegate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.onDrop(of:delegate:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:delegate:)-4bjnb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4bjnb","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4bjnb","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"onDrop(of:delegate:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza.json new file mode 100644 index 0000000..3f69878 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza.json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4vyza"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onDrop(of:delegate:)"},{"text":".","type":"text"}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Provide `UTType`s as the `supportedContentTypes` instead."}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"supportedTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4vyza"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrop"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"kind":"text","text":": "},{"text":"DropDelegate","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12DropDelegateP"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"13.4","unavailable":false,"deprecated":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","deprecatedAt":"100000.0"},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"deprecatedAt":"100000.0","message":"Provide `UTType`s as the `supportedContentTypes` instead.","introducedAt":"10.15"},{"introducedAt":"1.0","deprecatedAt":"100000.0","deprecated":false,"beta":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","name":"visionOS","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"onDrop(of:delegate:)","externalID":"s:7SwiftUI4ViewPAAE6onDrop2of8delegateQrSaySSG_AA0E8Delegate_ptF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","role":"symbol","symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:delegate:)-4vyza":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"onDrop(of:delegate:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4vyza","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4vyza"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf.json new file mode 100644 index 0000000..911ba57 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6oggf","interfaceLanguage":"swift"},"sections":[],"metadata":{"extendedModule":"SwiftUI","title":"onDrop(of:isTargeted:perform:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrop"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"text":"isTargeted","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">?, "},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"text":"]) -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecatedAt":"100000.0","introducedAt":"13.4","unavailable":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","beta":false,"deprecated":false,"name":"iOS"},{"introducedAt":"10.15","message":"Provide `UTType`s as the `supportedContentTypes` instead.","deprecated":false,"deprecatedAt":"100000.0","name":"macOS","unavailable":false,"beta":false},{"name":"visionOS","introducedAt":"1.0","deprecated":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","beta":false,"unavailable":false,"deprecatedAt":"100000.0"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onDrop(of:isTargeted:perform:)"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"supportedTypes","kind":"internalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"], "},{"text":"isTargeted","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">?, "},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" ([","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"text":"]) -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Provide `UTType`s as the `supportedContentTypes` instead."}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6oggf"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-6oggf":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6oggf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6oggf","role":"symbol","type":"topic","title":"onDrop(of:isTargeted:perform:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp.json new file mode 100644 index 0000000..b139454 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onDrop(of:isTargeted:perform:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6vsp"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"name":"iOS","deprecatedAt":"100000.0","introducedAt":"13.4","unavailable":false,"deprecated":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead."},{"beta":false,"introducedAt":"10.15","deprecatedAt":"100000.0","unavailable":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","deprecated":false,"name":"macOS"},{"deprecated":false,"introducedAt":"1.0","beta":false,"unavailable":false,"message":"Provide `UTType`s as the `supportedContentTypes` instead.","name":"visionOS","deprecatedAt":"100000.0"}],"title":"onDrop(of:isTargeted:perform:)","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSaySSG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"], ","kind":"text"},{"text":"isTargeted","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">?, "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": (["},{"preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"typeIdentifier","text":"CGPoint","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6vsp","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"supportedTypes"},{"kind":"text","text":": ["},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":"], ","kind":"text"},{"text":"isTargeted","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">?, "},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" ([","kind":"text"},{"text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"CGPoint","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Provide `UTType`s as the `supportedContentTypes` instead.","type":"text"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-6vsp":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6vsp","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": (["},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"kind":"text","text":"], "},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6vsp","kind":"symbol","title":"onDrop(of:isTargeted:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2.json new file mode 100644 index 0000000..77fde40 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2.json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrop"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"text":"], ","kind":"text"},{"text":"isTargeted","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"text":"]) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"14.0","unavailable":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"title":"onDrop(of:isTargeted:perform:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCGctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-7lgd2"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-7lgd2","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onDrop(of:isTargeted:perform:)"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrop"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"supportedContentTypes"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">?, "},{"kind":"externalParam","text":"perform"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" ([","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-7lgd2":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"isTargeted","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": (["},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"kind":"text","text":"]) -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"onDrop(of:isTargeted:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-7lgd2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-7lgd2"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3.json new file mode 100644 index 0000000..51e14f8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3.json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"14.0","unavailable":false},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE6onDrop2of10isTargeted7performQrSay22UniformTypeIdentifiers6UTTypeVG_AA7BindingVySbGSgSbSaySo14NSItemProviderCG_So7CGPointVtctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrop"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"isTargeted"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"onDrop(of:isTargeted:perform:)","extendedModule":"SwiftUI"},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-81vs3"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-81vs3"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onDrop(of:isTargeted:perform:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"text":"supportedContentTypes","kind":"internalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">?, "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" ([","kind":"text"},{"text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier","text":"CGPoint"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-81vs3":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-81vs3","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"isTargeted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">?, "},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"text":"], ","kind":"text"},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","title":"onDrop(of:isTargeted:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-81vs3","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onhover(perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onhover(perform:).json new file mode 100644 index 0000000..17ba5ef --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onhover(perform:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE7onHover7performQrySbc_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"13.4"},{"unavailable":false,"introducedAt":"10.15","name":"macOS","deprecated":false,"beta":false}],"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"onHover"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","title":"onHover(perform:)","role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onHover","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onhover(perform:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onHover(perform:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onHover(perform:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onHover(perform:)":{"title":"onHover(perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onhover(perform:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onHover","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onHover(perform:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:).json new file mode 100644 index 0000000..5956d45 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"introducedAt":"17.0","unavailable":false,"name":"iOS","beta":false},{"beta":false,"name":"macOS","introducedAt":"14.0","unavailable":false,"deprecated":false},{"introducedAt":"17.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"}],"title":"onKeyPress(_:action:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE10onKeyPress_6actionQrAA0E10EquivalentV_AA0eF0V6ResultOyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:action:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"action"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:action:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onKeyPress(_:action:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(_:action:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:action:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"onKeyPress(_:action:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:action:)","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:).json new file mode 100644 index 0000000..efaf707 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"17.0","unavailable":false},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"17.0"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10onKeyPress_6phases6actionQrAA0E10EquivalentV_AA0eF0V6PhasesVAJ6ResultOAJctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"onKeyPress(_:phases:action:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"kind":"text","text":"("},{"text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"phases"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"action"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":") -> ","kind":"text"},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","kind":"typeIdentifier","text":"Result"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI"},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onKeyPress(_:phases:action:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:phases:action:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Phases","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:phases:action:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(_:phases:action:)":{"title":"onKeyPress(_:phases:action:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier","text":"KeyPress"},{"kind":"text","text":") -> "},{"text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:phases:action:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:).json new file mode 100644 index 0000000..3a3d605 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onKeyPress(characters:phases:action:)"},{"type":"text","text":"."}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"characters"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CharacterSet","preciseIdentifier":"s:10Foundation12CharacterSetV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"phases"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Phases","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"kind":"text","text":", "},{"text":"action","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10onKeyPress10characters6phases6actionQr10Foundation12CharacterSetV_AA0eF0V6PhasesVAL6ResultOALctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false,"name":"iOS"},{"deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false}],"title":"onKeyPress(characters:phases:action:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"characters"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation12CharacterSetV","kind":"typeIdentifier","text":"CharacterSet"},{"text":", ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier","text":"KeyPress"},{"text":".","kind":"text"},{"text":"Phases","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"kind":"text","text":" = [.down, .repeat], "},{"text":"action","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Result","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(characters:phases:action:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(characters:phases:action:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(characters:phases:action:)":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(characters:phases:action:)","title":"onKeyPress(characters:phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"characters"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CharacterSet","preciseIdentifier":"s:10Foundation12CharacterSetV"},{"kind":"text","text":", "},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(characters:phases:action:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:).json new file mode 100644 index 0000000..2768f12 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(keys:phases:action:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onKeyPress(keys:phases:action:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(keys:phases:action:)"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"keys","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"kind":"text","text":"<"},{"text":"KeyEquivalent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"phases"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases","kind":"typeIdentifier"},{"kind":"text","text":" = [.down, .repeat], "},{"text":"action","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"metadata":{"platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"14.0"},{"beta":false,"name":"tvOS","introducedAt":"17.0","unavailable":false,"deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE10onKeyPress4keys6phases6actionQrShyAA0E10EquivalentVG_AA0eF0V6PhasesVAL6ResultOALctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"keys"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"action"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","title":"onKeyPress(keys:phases:action:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(keys:phases:action:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(keys:phases:action:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"keys"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","kind":"typeIdentifier","text":"Set"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV"},{"text":">, ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":"."},{"text":"Phases","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"kind":"text","text":", "},{"text":"action","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(keys:phases:action:)","kind":"symbol","title":"onKeyPress(keys:phases:action:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:).json new file mode 100644 index 0000000..5fdb078 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:).json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10onKeyPress6phases6actionQrAA0eF0V6PhasesV_AH6ResultOAHctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"onKeyPress(phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"text":"Phases","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier","text":"KeyPress"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"14.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"}],"symbolKind":"method","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(phases:action:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(phases:action:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onKeyPress(phases:action:)"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"phases","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"kind":"text","text":" = [.down, .repeat], "},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(phases:action:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(phases:action:)","role":"symbol","title":"onKeyPress(phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"phases","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"kind":"text","text":", "},{"kind":"externalParam","text":"action"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(phases:action:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json new file mode 100644 index 0000000..a6d3df4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance7perform0D15PressingChangedQrSd_14CoreFoundation7CGFloatVyycySbcSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"text":"minimumDuration","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maximumDistance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"onPressingChanged","kind":"externalParam"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":")?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"introducedAt":"13.0","beta":false,"name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"10.15","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"6.0","beta":false,"unavailable":false}],"roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onLongPressGesture"},{"kind":"text","text":"("},{"text":"minimumDuration","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"text":" = 0.5, ","kind":"text"},{"text":"maximumDistance","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":" = 10, "},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onPressingChanged"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":")? = nil) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"text":"minimumDuration","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maximumDistance"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": () -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onPressingChanged"},{"kind":"text","text":": (("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","kind":"symbol","title":"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json new file mode 100644 index 0000000..b19705c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"text":"minimumDuration","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maximumDistance"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"pressing","kind":"externalParam"},{"text":": ((","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"deprecatedAt":"100000.0","deprecated":false,"renamed":"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)","name":"iOS","beta":false,"introducedAt":"13.0","unavailable":false},{"beta":false,"deprecated":false,"unavailable":false,"renamed":"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)","deprecatedAt":"100000.0","name":"macOS","introducedAt":"10.15"},{"deprecatedAt":"100000.0","renamed":"onLongPressGesture(minimumDuration:maximumDuration:perform:onPressingChanged:)","name":"watchOS","unavailable":false,"introducedAt":"6.0","deprecated":false,"beta":false}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","extendedModule":"SwiftUI","roleHeading":"Instance Method","title":"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","externalID":"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration15maximumDistance8pressing7performQrSd_14CoreFoundation7CGFloatVySbcSgyyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"text":"minimumDuration","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"kind":"text","text":" = 0.5, "},{"kind":"externalParam","text":"maximumDistance"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":" = 10, ","kind":"text"},{"kind":"externalParam","text":"pressing"},{"text":": ((","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")? = nil, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)":{"deprecated":true,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onLongPressGesture"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"minimumDuration"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maximumDistance","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"pressing"},{"kind":"text","text":": (("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","title":"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:).json new file mode 100644 index 0000000..16f3104 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration7perform0D15PressingChangedQrSd_yycySbcSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onLongPressGesture"},{"text":"(","kind":"text"},{"text":"minimumDuration","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sd","text":"Double"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onPressingChanged"},{"kind":"text","text":": (("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"14.0","name":"tvOS"}],"title":"onLongPressGesture(minimumDuration:perform:onPressingChanged:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"minimumDuration"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sd","text":"Double"},{"text":" = 0.5, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onPressingChanged"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":")? = nil) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:perform:onpressingchanged:)"]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onLongPressGesture(minimumDuration:perform:onPressingChanged:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:perform:onPressingChanged:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"minimumDuration"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onPressingChanged"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:perform:onpressingchanged:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)","title":"onLongPressGesture(minimumDuration:perform:onPressingChanged:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:).json new file mode 100644 index 0000000..fe7908a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onLongPressGesture(minimumDuration:pressing:perform:)"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"role":"symbol","title":"onLongPressGesture(minimumDuration:pressing:perform:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"renamed":"onLongPressGesture(minimumDuration:perform:onPressingChanged:)","unavailable":false,"introducedAt":"14.0","beta":false,"deprecatedAt":"100000.0","name":"tvOS"}],"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minimumDuration"},{"kind":"text","text":": "},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":", ","kind":"text"},{"text":"pressing","kind":"externalParam"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":")?, "},{"text":"perform","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE18onLongPressGesture15minimumDuration8pressing7performQrSd_ySbcSgyyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:pressing:perform:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:pressing:perform:)"]}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"text":"minimumDuration","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":" = 0.5, ","kind":"text"},{"text":"pressing","kind":"externalParam"},{"kind":"text","text":": (("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":")? = nil, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:pressing:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:pressing:perform:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minimumDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"pressing"},{"text":": ((","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:pressing:perform:)","kind":"symbol","title":"onLongPressGesture(minimumDuration:pressing:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:).json new file mode 100644 index 0000000..91bc4bf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:).json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onOpenURL","kind":"identifier"},{"kind":"text","text":"("},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE9onOpenURL7performQry10Foundation0F0Vc_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false,"name":"iOS"},{"introducedAt":"11.0","name":"macOS","unavailable":false,"beta":false,"deprecated":false},{"introducedAt":"14.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"name":"watchOS","beta":false,"introducedAt":"7.0","deprecated":false,"unavailable":false}],"symbolKind":"method","roleHeading":"Instance Method","title":"onOpenURL(perform:)","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onopenurl(perform:)"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.onOpenURL(perform:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onOpenURL(perform:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onOpenURL"},{"kind":"text","text":"("},{"kind":"externalParam","text":"perform"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onOpenURL(perform:)":{"title":"onOpenURL(perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onopenurl(perform:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onOpenURL"},{"kind":"text","text":"("},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onOpenURL(perform:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:).json new file mode 100644 index 0000000..da61f15 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:).json @@ -0,0 +1 @@ +{"metadata":{"title":"onPreferenceChange(_:perform:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onPreferenceChange","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"iOS"},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15","unavailable":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"6.0","beta":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE18onPreferenceChange_7performQrqd__m_y5ValueQyd__ctAA0E3KeyRd__SQAGRQlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onpreferencechange(_:perform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onPreferenceChange(_:perform:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onPreferenceChange(_:perform:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onPreferenceChange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type = K.self, "},{"kind":"externalParam","text":"perform"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","text":"PreferenceKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onPreferenceChange(_:perform:)":{"title":"onPreferenceChange(_:perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onpreferencechange(_:perform:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onPreferenceChange","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onPreferenceChange(_:perform:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:).json new file mode 100644 index 0000000..52b76b9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:).json @@ -0,0 +1 @@ +{"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onReceive","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"P"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"publisher"},{"kind":"text","text":": "},{"text":"P","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Output"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"P"},{"text":" : ","kind":"text"},{"text":"Publisher","preciseIdentifier":"s:7Combine9PublisherP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"P"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Failure"},{"kind":"text","text":" == "},{"preciseIdentifier":"s:s5NeverO","text":"Never","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onreceive(_:perform:)"]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"name":"iOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"10.15"},{"deprecated":false,"name":"tvOS","introducedAt":"13.0","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onReceive","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"P"},{"text":">(","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Output"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE9onReceive_7performQrqd___y6OutputQyd__ct7Combine9PublisherRd__s5NeverO7FailureRtd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"onReceive(_:perform:)","symbolKind":"method"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onReceive(_:perform:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onReceive(_:perform:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onReceive(_:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onreceive(_:perform:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onReceive(_:perform:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onReceive","kind":"identifier"},{"kind":"text","text":"<"},{"text":"P","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"P"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Output"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"onReceive(_:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:).json new file mode 100644 index 0000000..137188c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onSubmit","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"triggers"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SubmitTriggers","preciseIdentifier":"s:7SwiftUI14SubmitTriggersV"},{"text":" = .text, ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"action"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" (() -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onSubmit","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SubmitTriggersV","text":"SubmitTriggers"},{"kind":"text","text":", (() -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":")) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"15.0"},{"deprecated":false,"introducedAt":"12.0","name":"macOS","unavailable":false,"beta":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"8.0"}],"role":"symbol","title":"onSubmit(of:_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE8onSubmit2of_QrAA0E8TriggersV_yyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/onsubmit(of:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onSubmit(of:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.onSubmit(of:_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onSubmit(of:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onsubmit(of:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onSubmit(of:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onSubmit","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"SubmitTriggers","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SubmitTriggersV"},{"kind":"text","text":", (() -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"onSubmit(of:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g.json new file mode 100644 index 0000000..84407fc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onTapGesture"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":" = 1, ","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","text":"CoordinateSpaceProtocol","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP"},{"kind":"text","text":" = .local, "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onTapGesture(count:coordinateSpace:perform:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-1ek8g","interfaceLanguage":"swift"},"metadata":{"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS"},{"beta":false,"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"14.0"},{"unavailable":false,"name":"watchOS","beta":false,"introducedAt":"10.0","deprecated":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onTapGesture","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coordinateSpace"},{"text":": some ","kind":"text"},{"text":"CoordinateSpaceProtocol","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","title":"onTapGesture(count:coordinateSpace:perform:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE12onTapGesture5count15coordinateSpace7performQrSi_qd__ySo7CGPointVctAA010CoordinateI8ProtocolRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-1ek8g"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:coordinateSpace:perform:)-1ek8g":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-1ek8g","kind":"symbol","title":"onTapGesture(count:coordinateSpace:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-1ek8g","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onTapGesture"},{"text":"(","kind":"text"},{"text":"count","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": some "},{"text":"CoordinateSpaceProtocol","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks.json new file mode 100644 index 0000000..2e006c9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onTapGesture"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" = 1, ","kind":"text"},{"kind":"externalParam","text":"coordinateSpace"},{"text":": ","kind":"text"},{"text":"CoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"text":" = .local, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":" ","kind":"text"},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.onTapGesture(count:coordinateSpace:perform:)"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-9kxks"]}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"message":"use overload that accepts a CoordinateSpaceProtocol instead","unavailable":false,"deprecated":false,"deprecatedAt":"100000.0","introducedAt":"16.0","beta":false,"name":"iOS"},{"introducedAt":"13.0","deprecated":false,"message":"use overload that accepts a CoordinateSpaceProtocol instead","name":"macOS","beta":false,"deprecatedAt":"100000.0","unavailable":false},{"message":"use overload that accepts a CoordinateSpaceProtocol instead","name":"watchOS","deprecated":false,"deprecatedAt":"100000.0","unavailable":false,"introducedAt":"9.0","beta":false},{"name":"visionOS","deprecated":false,"beta":false,"introducedAt":"1.0","deprecatedAt":"100000.0","message":"use overload that accepts a CoordinateSpaceProtocol instead","unavailable":false}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"onTapGesture"},{"kind":"text","text":"("},{"text":"count","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO","text":"CoordinateSpace"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE12onTapGesture5count15coordinateSpace7performQrSi_AA010CoordinateI0OySo7CGPointVctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"onTapGesture(count:coordinateSpace:perform:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"deprecationSummary":[{"inlineContent":[{"text":"use overload that accepts a CoordinateSpaceProtocol instead","type":"text"}],"type":"paragraph"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-9kxks","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:coordinateSpace:perform:)-9kxks":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-9kxks","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onTapGesture"},{"kind":"text","text":"("},{"text":"count","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coordinateSpace"},{"text":": ","kind":"text"},{"text":"CoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-9kxks","kind":"symbol","title":"onTapGesture(count:coordinateSpace:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:).json new file mode 100644 index 0000000..3ec2e0b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onTapGesture","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"count"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":" = 1, "},{"kind":"externalParam","text":"perform"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.onTapGesture(count:perform:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:perform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"onTapGesture(count:perform:)","externalID":"s:7SwiftUI4ViewPAAE12onTapGesture5count7performQrSi_yyctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onTapGesture","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"13.0"},{"name":"macOS","beta":false,"deprecated":false,"introducedAt":"10.15","unavailable":false},{"introducedAt":"16.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"beta":false,"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false}]},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:perform:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:perform:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onTapGesture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:perform:)","kind":"symbol","title":"onTapGesture(count:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/opacity(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/opacity(_:).json new file mode 100644 index 0000000..8bc2df6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/opacity(_:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15"},{"introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false}],"role":"symbol","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE7opacityyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"opacity"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"opacity(_:)"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/opacity(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.opacity(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"opacity","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"opacity"},{"text":": ","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/opacity(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/opacity(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/opacity(_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"opacity","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/opacity(_:)","title":"opacity(_:)","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:).json new file mode 100644 index 0000000..0941362 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:).json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Overlay"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Overlay"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"overlay(_:alignment:)","platforms":[{"deprecated":false,"introducedAt":"13.0","deprecatedAt":"100000.0","unavailable":false,"message":"Use `overlay(alignment:content:)` instead.","name":"iOS","beta":false},{"deprecatedAt":"100000.0","message":"Use `overlay(alignment:content:)` instead.","deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"10.15"},{"introducedAt":"13.0","unavailable":false,"message":"Use `overlay(alignment:content:)` instead.","name":"tvOS","deprecated":false,"deprecatedAt":"100000.0","beta":false},{"beta":false,"introducedAt":"6.0","name":"watchOS","message":"Use `overlay(alignment:content:)` instead.","deprecatedAt":"100000.0","deprecated":false,"unavailable":false},{"introducedAt":"1.0","beta":false,"deprecated":false,"deprecatedAt":"100000.0","message":"Use `overlay(alignment:content:)` instead.","name":"visionOS","unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE7overlay_9alignmentQrqd___AA9AlignmentVtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"text":"Overlay","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"overlay"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Overlay"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"kind":"text","text":" = .center) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Overlay"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:alignment:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:alignment:)"},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use `overlay(alignment:content:)` instead."}],"type":"paragraph"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.overlay(_:alignment:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:alignment:)":{"title":"overlay(_:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlay","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Overlay","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Overlay"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:alignment:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:).json new file mode 100644 index 0000000..f7ba964 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:).json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.overlay(_:ignoresSafeAreaEdges:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:ignoresSafeAreaEdges:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"edges"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"kind":"text","text":" = .all) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:ignoressafeareaedges:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE7overlay_20ignoresSafeAreaEdgesQrqd___AA4EdgeO3SetVtAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"overlay(_:ignoresSafeAreaEdges:)","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"12.0","beta":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"8.0","name":"watchOS"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"overlay","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:ignoresSafeAreaEdges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:ignoressafeareaedges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:ignoresSafeAreaEdges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"overlay","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"overlay(_:ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:).json new file mode 100644 index 0000000..5c4d6fe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:in:fillStyle:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0","name":"macOS"},{"name":"tvOS","beta":false,"introducedAt":"15.0","unavailable":false,"deprecated":false},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"title":"overlay(_:in:fillStyle:)","role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"overlay","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","text":"FillStyle","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE7overlay_2in9fillStyleQrqd___qd_0_AA04FillG0VtAA05ShapeG0Rd__AA0I0Rd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:in:fillstyle:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"overlay","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"in","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shape"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"kind":"text","text":": "},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":" = FillStyle()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10ShapeStyleP","text":"ShapeStyle"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"Shape","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ShapeP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.overlay(_:in:fillStyle:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:in:fillStyle:)":{"title":"overlay(_:in:fillStyle:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:in:fillstyle:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:in:fillStyle:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:).json new file mode 100644 index 0000000..9b66916 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.overlay(alignment:content:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(alignment:content:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":" = .center, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE7overlay9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"overlay","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"name":"macOS","introducedAt":"12.0","deprecated":false,"unavailable":false},{"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"8.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"title":"overlay(alignment:content:)","extendedModule":"SwiftUI"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(alignment:content:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(alignment:content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"overlay(alignment:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(alignment:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(alignment:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:).json new file mode 100644 index 0000000..a093ab9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:).json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlayPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Key","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".Type = Key.self, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Key"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Key","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","text":"PreferenceKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.overlayPreferenceValue(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE22overlayPreferenceValueyQrqd__m_qd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"overlayPreferenceValue(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlayPreferenceValue"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Key"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"name":"macOS","introducedAt":"10.15","unavailable":false,"deprecated":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"unavailable":false,"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"6.0"}],"symbolKind":"method","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlayPreferenceValue(_:_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlayPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Key"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Key","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"kind":"typeIdentifier","text":"Key"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:_:)","kind":"symbol","abstract":[],"title":"overlayPreferenceValue(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:).json new file mode 100644 index 0000000..bbb0082 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"SwiftUI","role":"symbol","title":"overlayPreferenceValue(_:alignment:_:)","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0"},{"unavailable":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"beta":false},{"deprecated":false,"introducedAt":"16.0","beta":false,"unavailable":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE22overlayPreferenceValue_9alignment_Qrqd__m_AA9AlignmentVqd_0_0F0Qyd__ctAA0E3KeyRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlayPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlayPreferenceValue"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"key","kind":"internalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"kind":"text","text":" = .center, "},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"PreferenceKey","preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:alignment:_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:alignment:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.overlayPreferenceValue(_:alignment:_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlayPreferenceValue(_:alignment:_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"overlayPreferenceValue"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"K"},{"kind":"text","text":", "},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:alignment:_:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:alignment:_:)","kind":"symbol","title":"overlayPreferenceValue(_:alignment:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x.json new file mode 100644 index 0000000..dff7d28 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-8la2x"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-8la2x"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"padding","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"length"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.padding(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"padding","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"padding(_:)","role":"symbol","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE7paddingyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0"},{"introducedAt":"10.15","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS","unavailable":false},{"name":"watchOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:)-8la2x":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"padding","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-8la2x","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-8la2x","title":"padding(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh.json new file mode 100644 index 0000000..86616b2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh.json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"introducedAt":"10.15","unavailable":false,"name":"macOS","deprecated":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"6.0","name":"watchOS"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE7paddingyQrAA10EdgeInsetsVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"padding(_:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"padding"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","text":"EdgeInsets"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-94ovh"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-94ovh"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.padding(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"padding","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"insets","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","text":"EdgeInsets","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:)-94ovh":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"padding","kind":"identifier"},{"kind":"text","text":"("},{"text":"EdgeInsets","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-94ovh","title":"padding(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-94ovh"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:_:).json new file mode 100644 index 0000000..5d91d3b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/padding(_:_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"padding"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"edges"},{"text":": ","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":" = .all, ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"length","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","title":"padding(_:_:)","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"padding","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"6.0","name":"watchOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE7paddingyQrAA4EdgeO3SetV_14CoreFoundation7CGFloatVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.padding(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"padding"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":", ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"padding(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:).json new file mode 100644 index 0000000..771c2ba --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.paletteSelectionEffect(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/paletteselectioneffect(_:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS","beta":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"}],"externalID":"s:7SwiftUI4ViewPAAE22paletteSelectionEffectyQrAA07PaletteeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"paletteSelectionEffect"},{"text":"(","kind":"text"},{"text":"PaletteSelectionEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PaletteSelectionEffectV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"paletteSelectionEffect(_:)","symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/paletteSelectionEffect(_:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"paletteSelectionEffect"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"effect"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI22PaletteSelectionEffectV","kind":"typeIdentifier","text":"PaletteSelectionEffect"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/paletteSelectionEffect(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/paletteselectioneffect(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"paletteSelectionEffect","kind":"identifier"},{"kind":"text","text":"("},{"text":"PaletteSelectionEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PaletteSelectionEffectV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/paletteSelectionEffect(_:)","kind":"symbol","title":"paletteSelectionEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:).json new file mode 100644 index 0000000..bce2edd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/persistentSystemOverlays(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE24persistentSystemOverlaysyQrAA10VisibilityOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"16.0"},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"macOS"},{"unavailable":false,"introducedAt":"16.0","name":"tvOS","beta":false,"deprecated":false},{"deprecated":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"beta":false}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"persistentSystemOverlays","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"persistentSystemOverlays(_:)","symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.persistentSystemOverlays(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/persistentsystemoverlays(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"persistentSystemOverlays"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"visibility","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/persistentSystemOverlays(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"persistentSystemOverlays"},{"kind":"text","text":"("},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"persistentSystemOverlays(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/persistentsystemoverlays(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/persistentSystemOverlays(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:).json new file mode 100644 index 0000000..35b8de6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"phaseAnimator(_:content:animation:)","externalID":"s:7SwiftUI4ViewPAAE13phaseAnimator_7content9animationQrqd_0__qd_1_AA018PlaceholderContentC0VyxG_qd__tcAA9AnimationVSgqd__ctSQRd__7ElementQyd_0_Rsd__STRd_0_AaBRd_1_r1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"phaseAnimator","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Phase","kind":"genericParameter"},{"text":">(some ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"animation"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Phase"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"17.0","unavailable":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"beta":false,"introducedAt":"17.0","unavailable":false,"deprecated":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"10.0"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"phaseAnimator"},{"text":"<","kind":"text"},{"text":"Phase","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"phases","kind":"internalParam"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"text":"Phase","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"animation","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Phase"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"? = { _ in .default }) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Phase","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.phaseAnimator(_:content:animation:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:content:animation:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:content:animation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/phaseAnimator(_:content:animation:)":{"title":"phaseAnimator(_:content:animation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:content:animation:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"phaseAnimator"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Phase"},{"kind":"text","text":">(some "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"animation","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Animation","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:content:animation:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:).json new file mode 100644 index 0000000..9f2bcc4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:).json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"17.0"},{"beta":false,"introducedAt":"14.0","name":"macOS","deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"17.0","name":"tvOS","deprecated":false,"unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"10.0","beta":false}],"title":"phaseAnimator(_:trigger:content:animation:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"phaseAnimator","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Phase","kind":"genericParameter"},{"text":">(some ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"trigger","kind":"externalParam"},{"text":": some ","kind":"text"},{"preciseIdentifier":"s:SQ","text":"Equatable","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier","text":"PlaceholderContentView"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"kind":"typeIdentifier","text":"Phase"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"kind":"externalParam","text":"animation"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Phase"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE13phaseAnimator_7trigger7content9animationQrqd_0__qd_1_qd_2_AA018PlaceholderContentC0VyxG_qd__tcAA9AnimationVSgqd__ctSQRd__7ElementQyd_0_Rsd__STRd_0_SQRd_1_AaBRd_2_r2_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:trigger:content:animation:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:trigger:content:animation:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"phaseAnimator","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Phase","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"phases","kind":"internalParam"},{"text":": some ","kind":"text"},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"kind":"typeIdentifier","text":"Phase"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"animation"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Phase"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AnimationV","kind":"typeIdentifier","text":"Animation"},{"kind":"text","text":"? = { _ in .default }) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Phase"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.phaseAnimator(_:trigger:content:animation:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/phaseAnimator(_:trigger:content:animation:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:trigger:content:animation:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:trigger:content:animation:)","role":"symbol","title":"phaseAnimator(_:trigger:content:animation:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"phaseAnimator"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Phase"},{"kind":"text","text":">(some "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"text":"Phase","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"text":"animation","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:).json new file mode 100644 index 0000000..bda7786 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"pickerStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"PickerStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11PickerStyleP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/pickerstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.pickerStyle(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/pickerStyle(_:)","interfaceLanguage":"swift"},"metadata":{"title":"pickerStyle(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"10.15"},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0"},{"introducedAt":"6.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE11pickerStyleyQrqd__AA06PickerE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"pickerStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/pickerStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/pickerstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/pickerStyle(_:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"pickerStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"pickerStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:).json new file mode 100644 index 0000000..128107c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"popover","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"attachmentAnchor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO","kind":"typeIdentifier","text":"PopoverAttachmentAnchor"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arrowEdge"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","platforms":[{"introducedAt":"13.0","name":"iOS","deprecated":false,"unavailable":false,"beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"10.15","name":"macOS"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"popover(isPresented:attachmentAnchor:arrowEdge:content:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE7popover11isPresented16attachmentAnchor9arrowEdge7contentQrAA7BindingVySbG_AA017PopoverAttachmentH0OAA0J0Oqd__yctAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(isPresented:attachmentAnchor:arrowEdge:content:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.popover(isPresented:attachmentAnchor:arrowEdge:content:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/popover(ispresented:attachmentanchor:arrowedge:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"popover","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"attachmentAnchor"},{"text":": ","kind":"text"},{"text":"PopoverAttachmentAnchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO"},{"text":" = .rect(.bounds), ","kind":"text"},{"text":"arrowEdge","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":" = .top, "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/popover(isPresented:attachmentAnchor:arrowEdge:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/popover(ispresented:attachmentanchor:arrowedge:content:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(isPresented:attachmentAnchor:arrowEdge:content:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"popover"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"attachmentAnchor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO","text":"PopoverAttachmentAnchor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arrowEdge"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"popover(isPresented:attachmentAnchor:arrowEdge:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:).json new file mode 100644 index 0000000..71d449c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(item:attachmentAnchor:arrowEdge:content:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"popover"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"kind":"text","text":", "},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"kind":"externalParam","text":"attachmentAnchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PopoverAttachmentAnchor","preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO"},{"text":" = .rect(.bounds), ","kind":"text"},{"text":"arrowEdge","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"text":" = .top, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Item"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/popover(item:attachmentanchor:arrowedge:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","symbolKind":"method","title":"popover(item:attachmentAnchor:arrowEdge:content:)","roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false},{"introducedAt":"10.15","name":"macOS","unavailable":false,"beta":false,"deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE7popover4item16attachmentAnchor9arrowEdge7contentQrAA7BindingVyqd__SgG_AA017PopoverAttachmentG0OAA0I0Oqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"popover","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Item","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"attachmentAnchor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PopoverAttachmentAnchor","preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO"},{"kind":"text","text":", "},{"text":"arrowEdge","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.popover(item:attachmentAnchor:arrowEdge:content:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/popover(item:attachmentAnchor:arrowEdge:content:)":{"title":"popover(item:attachmentAnchor:arrowEdge:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/popover(item:attachmentanchor:arrowedge:content:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"popover","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"attachmentAnchor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO","kind":"typeIdentifier","text":"PopoverAttachmentAnchor"},{"text":", ","kind":"text"},{"text":"arrowEdge","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(item:attachmentAnchor:arrowEdge:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(_:).json new file mode 100644 index 0000000..a239732 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.position(_:)"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/position(_:)"]}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","name":"iOS","unavailable":false,"beta":false,"deprecated":false},{"introducedAt":"10.15","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"name":"tvOS","introducedAt":"13.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"6.0","deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE8positionyQrSo7CGPointVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"position(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"kind":"text","text":"("},{"text":"CGPoint","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"position"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"position","kind":"internalParam"},{"kind":"text","text":": "},{"text":"CGPoint","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/position(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"position(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/position(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(x:y:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(x:y:).json new file mode 100644 index 0000000..3e0d06e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/position(x:y:).json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE8position1x1yQr14CoreFoundation7CGFloatV_AItF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false},{"beta":false,"introducedAt":"10.15","name":"macOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"tvOS","beta":false},{"beta":false,"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"6.0"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"position(x:y:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"position"},{"kind":"text","text":"("},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"text":"(","kind":"text"},{"text":"x","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":" = 0, "},{"text":"y","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":" = 0) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/position(x:y:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.position(x:y:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(x:y:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/position(x:y:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(x:y:)","role":"symbol","kind":"symbol","abstract":[],"type":"topic","title":"position(x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/position(x:y:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"kind":"text","text":"("},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preference(key:value:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preference(key:value:).json new file mode 100644 index 0000000..0e3b003 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preference(key:value:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.preference(key:value:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"preference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"key","kind":"externalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type = K.self, ","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"PreferenceKey","preciseIdentifier":"s:7SwiftUI13PreferenceKeyP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preference(key:value:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/preference(key:value:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"preference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE10preference3key5valueQrqd__m_5ValueQyd__tAA13PreferenceKeyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"preference(key:value:)","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/preference(key:value:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"preference"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"preference(key:value:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/preference(key:value:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preference(key:value:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:).json new file mode 100644 index 0000000..e68b211 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:).json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"deprecated":false,"name":"iOS","beta":false,"introducedAt":"13.0","unavailable":false},{"beta":false,"name":"macOS","unavailable":false,"introducedAt":"11.0","deprecated":false},{"beta":false,"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"13.0"},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"6.0","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE20preferredColorSchemeyQrAA0eF0OSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"preferredColorScheme"},{"kind":"text","text":"("},{"text":"ColorScheme","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"preferredColorScheme(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preferredColorScheme(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"preferredColorScheme"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"colorScheme","kind":"internalParam"},{"kind":"text","text":": "},{"text":"ColorScheme","preciseIdentifier":"s:7SwiftUI11ColorSchemeO","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/preferredcolorscheme(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.preferredColorScheme(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/preferredColorScheme(_:)":{"title":"preferredColorScheme(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/preferredcolorscheme(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"preferredColorScheme","kind":"identifier"},{"kind":"text","text":"("},{"text":"ColorScheme","preciseIdentifier":"s:7SwiftUI11ColorSchemeO","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preferredColorScheme(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:).json new file mode 100644 index 0000000..dfe10c0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(_:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationBackground","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10ShapeStyleP","kind":"typeIdentifier","text":"ShapeStyle"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"16.4","unavailable":false},{"introducedAt":"13.3","name":"macOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"deprecated":false,"introducedAt":"16.4","name":"tvOS","unavailable":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"9.4"}],"externalID":"s:7SwiftUI4ViewPAAE22presentationBackgroundyQrqd__AA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"presentationBackground(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationBackground","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.presentationBackground(_:)"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackground(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"presentationBackground","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"presentationBackground(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:).json new file mode 100644 index 0000000..aab600f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.presentationBackground(alignment:content:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(alignment:content:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(alignment:content:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"presentationBackground","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":" = .center, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE22presentationBackground9alignment7contentQrAA9AlignmentV_qd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationBackground","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"presentationBackground(alignment:content:)","platforms":[{"name":"iOS","deprecated":false,"beta":false,"introducedAt":"16.4","unavailable":false},{"name":"macOS","beta":false,"unavailable":false,"introducedAt":"13.3","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"16.4","unavailable":false,"deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"9.4"}]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackground(alignment:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(alignment:content:)","title":"presentationBackground(alignment:content:)","abstract":[],"kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(alignment:content:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:).json new file mode 100644 index 0000000..d585f4d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.presentationBackgroundInteraction(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackgroundinteraction(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE33presentationBackgroundInteractionyQrAA012PresentationeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"presentationBackgroundInteraction"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI33PresentationBackgroundInteractionV","text":"PresentationBackgroundInteraction","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"beta":false,"name":"iOS","introducedAt":"16.4","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"13.3","beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"16.4","beta":false,"deprecated":false},{"introducedAt":"9.4","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"presentationBackgroundInteraction(_:)"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackgroundInteraction(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationBackgroundInteraction","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"interaction","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI33PresentationBackgroundInteractionV","text":"PresentationBackgroundInteraction"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackgroundInteraction(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackgroundinteraction(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationBackgroundInteraction"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"PresentationBackgroundInteraction","preciseIdentifier":"s:7SwiftUI33PresentationBackgroundInteractionV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackgroundInteraction(_:)","kind":"symbol","title":"presentationBackgroundInteraction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:).json new file mode 100644 index 0000000..b0488a7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(_:)"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"platforms":[{"beta":false,"deprecated":false,"introducedAt":"16.4","name":"iOS","unavailable":false},{"introducedAt":"13.3","name":"macOS","beta":false,"deprecated":false,"unavailable":false},{"unavailable":false,"introducedAt":"16.4","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"9.4","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE29presentationCompactAdaptationyQrAA012PresentationF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationCompactAdaptation","kind":"identifier"},{"text":"(","kind":"text"},{"text":"PresentationAdaptation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"presentationCompactAdaptation(_:)","extendedModule":"SwiftUI"},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"presentationCompactAdaptation"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"adaptation"},{"kind":"text","text":": "},{"text":"PresentationAdaptation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.presentationCompactAdaptation(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCompactAdaptation(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(_:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationCompactAdaptation"},{"text":"(","kind":"text"},{"text":"PresentationAdaptation","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"presentationCompactAdaptation(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:).json new file mode 100644 index 0000000..716d756 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(horizontal:vertical:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationCompactAdaptation"},{"kind":"text","text":"("},{"text":"horizontal","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"horizontalAdaptation","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"PresentationAdaptation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV"},{"text":", ","kind":"text"},{"text":"vertical","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"verticalAdaptation","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PresentationAdaptation","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.presentationCompactAdaptation(horizontal:vertical:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"extendedModule":"SwiftUI","title":"presentationCompactAdaptation(horizontal:vertical:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE29presentationCompactAdaptation10horizontal8verticalQrAA012PresentationF0V_AHtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationCompactAdaptation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"horizontal"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","text":"PresentationAdaptation"},{"text":", ","kind":"text"},{"text":"vertical","kind":"externalParam"},{"kind":"text","text":": "},{"text":"PresentationAdaptation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","platforms":[{"introducedAt":"16.4","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"13.3","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"16.4","deprecated":false,"beta":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","introducedAt":"9.4","beta":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(horizontal:vertical:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCompactAdaptation(horizontal:vertical:)":{"title":"presentationCompactAdaptation(horizontal:vertical:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(horizontal:vertical:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationCompactAdaptation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"horizontal"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","text":"PresentationAdaptation"},{"text":", ","kind":"text"},{"text":"vertical","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","text":"PresentationAdaptation","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(horizontal:vertical:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:).json new file mode 100644 index 0000000..d670399 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.presentationContentInteraction(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcontentinteraction(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"presentationContentInteraction(_:)","externalID":"s:7SwiftUI4ViewPAAE30presentationContentInteractionyQrAA012PresentationeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"presentationContentInteraction"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"PresentationContentInteraction","preciseIdentifier":"s:7SwiftUI30PresentationContentInteractionV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.4","name":"iOS"},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"13.3","unavailable":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"16.4","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.4","name":"watchOS"}],"role":"symbol"},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationContentInteraction(_:)","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationContentInteraction"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"behavior","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"PresentationContentInteraction","preciseIdentifier":"s:7SwiftUI30PresentationContentInteractionV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationContentInteraction(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcontentinteraction(_:)","title":"presentationContentInteraction(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationContentInteraction","kind":"identifier"},{"kind":"text","text":"("},{"text":"PresentationContentInteraction","preciseIdentifier":"s:7SwiftUI30PresentationContentInteractionV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationContentInteraction(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:).json new file mode 100644 index 0000000..24e2cd2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCornerRadius(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.presentationCornerRadius(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","title":"presentationCornerRadius(_:)","extendedModule":"SwiftUI","platforms":[{"introducedAt":"16.4","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"13.3","unavailable":false,"beta":false},{"beta":false,"name":"tvOS","introducedAt":"16.4","deprecated":false,"unavailable":false},{"introducedAt":"9.4","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"presentationCornerRadius"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE24presentationCornerRadiusyQr14CoreFoundation7CGFloatVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"presentationCornerRadius","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"cornerRadius","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcornerradius(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","role":"collection","abstract":[],"type":"topic","url":"\/documentation\/playbacksdk","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations","kind":"article","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","abstract":[],"role":"collectionGroup","title":"View Implementations","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCornerRadius(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcornerradius(_:)","role":"symbol","title":"presentationCornerRadius(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCornerRadius(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"presentationCornerRadius","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:).json new file mode 100644 index 0000000..3f7eb6b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.presentationDetents(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:)"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationDetents","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"detents","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","kind":"typeIdentifier","text":"Set"},{"text":"<","kind":"text"},{"text":"PresentationDetent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"kind":"symbol","metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"presentationDetents","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"text":"PresentationDetent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"unavailable":false,"name":"macOS","introducedAt":"13.0","beta":false,"deprecated":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"name":"watchOS","beta":false,"introducedAt":"9.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"presentationDetents(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE19presentationDetentsyQrShyAA18PresentationDetentVGF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDetents(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationDetents","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"kind":"text","text":"<"},{"text":"PresentationDetent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"presentationDetents(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:).json new file mode 100644 index 0000000..57ae83b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.presentationDetents(_:selection:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:selection:)"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:selection:)"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"presentationDetents"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV","text":"PresentationDetent"},{"kind":"text","text":">, "},{"text":"selection","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE19presentationDetents_9selectionQrShyAA18PresentationDetentVG_AA7BindingVyAGGtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"16.0"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0","name":"tvOS"},{"introducedAt":"9.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"presentationDetents(_:selection:)","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"presentationDetents","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"detents","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"selection"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"PresentationDetent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDetents(_:selection:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationDetents"},{"kind":"text","text":"("},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"selection","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"presentationDetents(_:selection:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:selection:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:selection:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:).json new file mode 100644 index 0000000..2c5306d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDragIndicator(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.presentationDragIndicator(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdragindicator(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE25presentationDragIndicatoryQrAA10VisibilityOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationDragIndicator","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"16.0","deprecated":false,"unavailable":false},{"unavailable":false,"name":"watchOS","introducedAt":"9.0","beta":false,"deprecated":false}],"title":"presentationDragIndicator(_:)","extendedModule":"SwiftUI"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"presentationDragIndicator","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"visibility"},{"text":": ","kind":"text"},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDragIndicator(_:)":{"title":"presentationDragIndicator(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdragindicator(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationDragIndicator","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDragIndicator(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:).json new file mode 100644 index 0000000..bec34d7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/previewcontext(_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.previewContext(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewContext","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14PreviewContextP","text":"PreviewContext"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewContext(_:)"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","platforms":[{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"11.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"introducedAt":"7.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"title":"previewContext(_:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE14previewContextyQrqd__AA07PreviewE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"previewContext","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewContext(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewContext(_:)","abstract":[],"kind":"symbol","title":"previewContext(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewcontext(_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewContext","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:).json new file mode 100644 index 0000000..d32a1a7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDevice(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"previewDevice","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13PreviewDeviceV","kind":"typeIdentifier","text":"PreviewDevice"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.previewDevice(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/previewdevice(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE13previewDeviceyQrAA07PreviewE0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"previewDevice","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13PreviewDeviceV","text":"PreviewDevice"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"previewDevice(_:)","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"10.15","unavailable":false,"beta":false},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"tvOS","beta":false},{"deprecated":false,"name":"watchOS","introducedAt":"6.0","unavailable":false,"beta":false}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewDevice(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"previewDevice"},{"kind":"text","text":"("},{"text":"PreviewDevice","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13PreviewDeviceV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"previewDevice(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewdevice(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDevice(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:).json new file mode 100644 index 0000000..cbe204f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/previewdisplayname(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE18previewDisplayNameyQrSSSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","role":"symbol","title":"previewDisplayName(_:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewDisplayName"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"unavailable":false,"introducedAt":"13.0","name":"iOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"name":"macOS","introducedAt":"10.15","deprecated":false},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0"}],"roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.previewDisplayName(_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewDisplayName","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDisplayName(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewDisplayName(_:)":{"title":"previewDisplayName(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewdisplayname(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewDisplayName","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDisplayName(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:).json new file mode 100644 index 0000000..bfae3fa --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.previewInterfaceOrientation(_:)"},{"type":"text","text":"."}],"metadata":{"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE27previewInterfaceOrientationyQrAA0eF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS"},{"introducedAt":"12.0","unavailable":false,"name":"macOS","beta":false,"deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0","name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","title":"previewInterfaceOrientation(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"previewInterfaceOrientation","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20InterfaceOrientationV","text":"InterfaceOrientation","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/previewinterfaceorientation(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"previewInterfaceOrientation"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20InterfaceOrientationV","text":"InterfaceOrientation","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewInterfaceOrientation(_:)"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewInterfaceOrientation(_:)":{"title":"previewInterfaceOrientation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewinterfaceorientation(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewInterfaceOrientation"},{"kind":"text","text":"("},{"text":"InterfaceOrientation","preciseIdentifier":"s:7SwiftUI20InterfaceOrientationV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewInterfaceOrientation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:).json new file mode 100644 index 0000000..b1dae6a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:).json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"introducedAt":"10.15","beta":false,"unavailable":false,"name":"macOS"},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"unavailable":false,"introducedAt":"6.0","deprecated":false,"name":"watchOS","beta":false}],"title":"previewLayout(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE13previewLayoutyQr21DeveloperToolsSupport07PreviewE0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"previewLayout","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:21DeveloperToolsSupport13PreviewLayoutO","text":"PreviewLayout","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/previewlayout(_:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewLayout(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.previewLayout(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewLayout"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"preciseIdentifier":"s:21DeveloperToolsSupport13PreviewLayoutO","text":"PreviewLayout","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewLayout(_:)":{"title":"previewLayout(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewlayout(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewLayout"},{"kind":"text","text":"("},{"text":"PreviewLayout","preciseIdentifier":"s:21DeveloperToolsSupport13PreviewLayoutO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewLayout(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:).json new file mode 100644 index 0000000..1ca3eac --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/privacysensitive(_:)"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"privacySensitive"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"sensitive","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.privacySensitive(_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE16privacySensitiveyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"privacySensitive","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"extendedModule":"SwiftUI","title":"privacySensitive(_:)"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/privacySensitive(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/privacySensitive(_:)":{"title":"privacySensitive(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/privacysensitive(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"privacySensitive"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/privacySensitive(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:).json new file mode 100644 index 0000000..ee81546 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"progressViewStyle(_:)","externalID":"s:7SwiftUI4ViewPAAE08progressC5StyleyQrqd__AA08ProgresscE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"progressViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"14.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"11.0","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0","name":"tvOS"},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"7.0","beta":false}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"progressViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17ProgressViewStyleP","kind":"typeIdentifier","text":"ProgressViewStyle"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.progressViewStyle(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/progressViewStyle(_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/progressviewstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/progressViewStyle(_:)":{"title":"progressViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/progressviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"progressViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/progressViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:).json new file mode 100644 index 0000000..21753bc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"6.0"}],"externalID":"s:7SwiftUI4ViewPAAE16projectionEffectyQrAA19ProjectionTransformVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"projectionEffect(_:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"projectionEffect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI19ProjectionTransformV","text":"ProjectionTransform","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/projectioneffect(_:)"]}],"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.projectionEffect(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/projectionEffect(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"projectionEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI19ProjectionTransformV","text":"ProjectionTransform","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/projectionEffect(_:)":{"title":"projectionEffect(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/projectionEffect(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/projectioneffect(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"projectionEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI19ProjectionTransformV","kind":"typeIdentifier","text":"ProjectionTransform"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/redacted(reason:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/redacted(reason:).json new file mode 100644 index 0000000..c7c1770 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/redacted(reason:).json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"redacted","kind":"identifier"},{"text":"(","kind":"text"},{"text":"reason","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RedactionReasons","preciseIdentifier":"s:7SwiftUI16RedactionReasonsV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"redacted(reason:)","platforms":[{"deprecated":false,"name":"iOS","beta":false,"unavailable":false,"introducedAt":"14.0"},{"unavailable":false,"beta":false,"introducedAt":"11.0","deprecated":false,"name":"macOS"},{"deprecated":false,"name":"tvOS","introducedAt":"14.0","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"7.0","name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE8redacted6reasonQrAA16RedactionReasonsV_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.redacted(reason:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"redacted","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"reason"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"RedactionReasons","preciseIdentifier":"s:7SwiftUI16RedactionReasonsV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/redacted(reason:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/redacted(reason:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/redacted(reason:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/redacted(reason:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/redacted(reason:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"redacted","kind":"identifier"},{"kind":"text","text":"("},{"text":"reason","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RedactionReasons","preciseIdentifier":"s:7SwiftUI16RedactionReasonsV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","title":"redacted(reason:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/refreshable(action:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/refreshable(action:).json new file mode 100644 index 0000000..b0a91eb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/refreshable(action:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/refreshable(action:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.refreshable(action:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/refreshable(action:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"refreshable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"action"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () ","kind":"text"},{"text":"async","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshable"},{"kind":"text","text":"("},{"text":"action","kind":"externalParam"},{"kind":"text","text":": () "},{"text":"async","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"refreshable(action:)","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false},{"introducedAt":"12.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE11refreshable6actionQryyYaYbc_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/refreshable(action:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshable"},{"text":"(","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": () ","kind":"text"},{"text":"async","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"refreshable(action:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/refreshable(action:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/refreshable(action:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w.json new file mode 100644 index 0000000..e5c3da4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.renameAction(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-7vs1w"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE12renameActionyQryycF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","title":"renameAction(_:)","platforms":[{"unavailable":false,"name":"iOS","introducedAt":"16.0","beta":false,"deprecated":false},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"name":"tvOS","beta":false,"introducedAt":"16.0","deprecated":false,"unavailable":false},{"introducedAt":"9.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"renameAction","kind":"identifier"},{"text":"(() -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-7vs1w"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"renameAction","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/renameAction(_:)-7vs1w":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-7vs1w","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-7vs1w","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"renameAction","kind":"identifier"},{"kind":"text","text":"(() -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"renameAction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7.json new file mode 100644 index 0000000..58eb00c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7.json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12renameActionyQrAA10FocusStateV7BindingVySb_GF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"renameAction(_:)","extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"renameAction"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">."},{"preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"beta":false,"introducedAt":"16.0","unavailable":false,"deprecated":false,"name":"iOS"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"macOS"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"16.0","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"9.0","beta":false}],"role":"symbol"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.renameAction(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-dhl7"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"renameAction","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isFocused"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"FocusState","preciseIdentifier":"s:7SwiftUI10FocusStateV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-dhl7"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/renameAction(_:)-dhl7":{"title":"renameAction(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-dhl7","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-dhl7","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"renameAction"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:).json new file mode 100644 index 0000000..7ca8ed1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.replaceDisabled(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/replacedisabled(_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"16.0","deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE15replaceDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"replaceDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"replaceDisabled(_:)"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/replaceDisabled(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"replaceDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isDisabled"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/replaceDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/replacedisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/replaceDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceDisabled"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"replaceDisabled(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:).json new file mode 100644 index 0000000..ced97c0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.rotation3DEffect(_:axis:anchor:anchorZ:perspective:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"rotation3DEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"angle"},{"text":": ","kind":"text"},{"text":"Angle","preciseIdentifier":"s:7SwiftUI5AngleV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"axis"},{"kind":"text","text":": (x"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", y","kind":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", z","kind":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"), ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"kind":"text","text":" = .center, "},{"text":"anchorZ","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":" = 0, "},{"text":"perspective","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":" = 1) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/rotation3deffect(_:axis:anchor:anchorz:perspective:)"]}],"kind":"symbol","metadata":{"externalID":"s:7SwiftUI4ViewPAAE16rotation3DEffect_4axis6anchor0G1Z11perspectiveQrAA5AngleV_14CoreFoundation7CGFloatV1x_AM1yAM1ztAA9UnitPointVA2MtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"rotation3DEffect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5AngleV","kind":"typeIdentifier","text":"Angle"},{"kind":"text","text":", "},{"text":"axis","kind":"externalParam"},{"text":": (x","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", y"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", z"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"), ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"anchorZ","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perspective"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","title":"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS"},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"13.0","unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"6.0","beta":false}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"rotation3DEffect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5AngleV","text":"Angle","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"axis","kind":"externalParam"},{"text":": (x","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", y","kind":"text"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", z"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchorZ"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perspective","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/rotation3deffect(_:axis:anchor:anchorz:perspective:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:).json new file mode 100644 index 0000000..3a48195 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotationEffect(_:anchor:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"rotationEffect"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5AngleV","text":"Angle","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"rotationEffect(_:anchor:)","extendedModule":"SwiftUI","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE14rotationEffect_6anchorQrAA5AngleV_AA9UnitPointVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15","name":"macOS"},{"beta":false,"introducedAt":"13.0","unavailable":false,"name":"tvOS","deprecated":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"6.0","unavailable":false}]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/rotationeffect(_:anchor:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationEffect"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"angle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AngleV","text":"Angle"},{"kind":"text","text":", "},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"text":" = .center) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.rotationEffect(_:anchor:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/rotationEffect(_:anchor:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationEffect"},{"text":"(","kind":"text"},{"text":"Angle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AngleV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"rotationEffect(_:anchor:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/rotationeffect(_:anchor:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotationEffect(_:anchor:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6.json new file mode 100644 index 0000000..d34d417 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6.json @@ -0,0 +1 @@ +{"metadata":{"title":"safeAreaInset(edge:alignment:spacing:content:)","extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0"},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA12VerticalEdgeO_AA19HorizontalAlignmentV14CoreFoundation7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaInset","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","text":"VerticalEdge"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","text":"HorizontalAlignment"},{"kind":"text","text":", "},{"kind":"externalParam","text":"spacing"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaInset"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","text":"VerticalEdge"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"HorizontalAlignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV"},{"text":" = .center, ","kind":"text"},{"kind":"externalParam","text":"spacing"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-8xuc6"]}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-8xuc6","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.safeAreaInset(edge:alignment:spacing:content:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaInset(edge:alignment:spacing:content:)-8xuc6":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"safeAreaInset","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","text":"HorizontalAlignment"},{"kind":"text","text":", "},{"text":"spacing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-8xuc6","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-8xuc6","abstract":[],"title":"safeAreaInset(edge:alignment:spacing:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw.json new file mode 100644 index 0000000..2cca188 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw.json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE13safeAreaInset4edge9alignment7spacing7contentQrAA14HorizontalEdgeO_AA17VerticalAlignmentV14CoreFoundation7CGFloatVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"name":"iOS","deprecated":false,"beta":false,"introducedAt":"15.0"},{"introducedAt":"12.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"15.0","beta":false,"name":"tvOS"},{"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaInset"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"edge","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","text":"VerticalAlignment","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"spacing"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"safeAreaInset(edge:alignment:spacing:content:)","extendedModule":"SwiftUI"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-9xmw"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.safeAreaInset(edge:alignment:spacing:content:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-9xmw"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaInset"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"edge"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","text":"VerticalAlignment"},{"text":" = .center, ","kind":"text"},{"kind":"externalParam","text":"spacing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"? = nil, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaInset(edge:alignment:spacing:content:)-9xmw":{"title":"safeAreaInset(edge:alignment:spacing:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-9xmw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"safeAreaInset","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"edge"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"VerticalAlignment","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"spacing","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-9xmw","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh.json new file mode 100644 index 0000000..5078aa6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh.json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.safeAreaPadding(_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"safeAreaPadding"},{"text":"(","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"safeAreaPadding(_:)","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false,"name":"iOS"},{"introducedAt":"14.0","beta":false,"name":"macOS","unavailable":false,"deprecated":false},{"name":"tvOS","unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false},{"introducedAt":"10.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE15safeAreaPaddingyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"safeAreaPadding"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"length","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-1cwxh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-1cwxh"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:)-1cwxh":{"title":"safeAreaPadding(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-1cwxh","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-1cwxh","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb.json new file mode 100644 index 0000000..82bd3b7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb.json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.safeAreaPadding(_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-8hgvb"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-8hgvb"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"insets","kind":"internalParam"},{"kind":"text","text":": "},{"text":"EdgeInsets","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","title":"safeAreaPadding(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","text":"EdgeInsets"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE15safeAreaPaddingyQrAA10EdgeInsetsVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"introducedAt":"17.0","name":"iOS","deprecated":false,"unavailable":false,"beta":false},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"introducedAt":"17.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"name":"watchOS","introducedAt":"10.0","unavailable":false,"deprecated":false}],"extendedModule":"SwiftUI","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:)-8hgvb":{"title":"safeAreaPadding(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-8hgvb","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaPadding"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier","text":"EdgeInsets"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-8hgvb","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:).json new file mode 100644 index 0000000..6a22cf7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.safeAreaPadding(_:_:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"edges","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":" = .all, ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"length","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"? = nil) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE15safeAreaPaddingyQrAA4EdgeO3SetV_14CoreFoundation7CGFloatVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"safeAreaPadding(_:_:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaPadding"},{"text":"(","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"introducedAt":"14.0","unavailable":false,"deprecated":false,"beta":false,"name":"macOS"},{"deprecated":false,"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"17.0"},{"beta":false,"introducedAt":"10.0","unavailable":false,"deprecated":false,"name":"watchOS"}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"safeAreaPadding(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/saturation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/saturation(_:).json new file mode 100644 index 0000000..288bda5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/saturation(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"saturation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"amount"},{"kind":"text","text":": "},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"saturation(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"saturation"},{"text":"(","kind":"text"},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","extendedModule":"SwiftUI","platforms":[{"beta":false,"unavailable":false,"introducedAt":"13.0","deprecated":false,"name":"iOS"},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"6.0","name":"watchOS","beta":false,"deprecated":false}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE10saturationyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/saturation(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/saturation(_:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.saturation(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/saturation(_:)":{"title":"saturation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/saturation(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"saturation","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/saturation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofill().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofill().json new file mode 100644 index 0000000..a8a03c1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofill().json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofill()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFill()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scaledToFill()"},{"type":"text","text":"."}],"metadata":{"platforms":[{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"iOS"},{"beta":false,"deprecated":false,"introducedAt":"10.15","unavailable":false,"name":"macOS"},{"name":"tvOS","introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"deprecated":false,"introducedAt":"6.0","unavailable":false,"name":"watchOS"}],"title":"scaledToFill()","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE12scaledToFillQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaledToFill"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scaledToFill"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaledToFill()":{"role":"symbol","title":"scaledToFill()","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofill()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scaledToFill","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFill()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofit().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofit().json new file mode 100644 index 0000000..19b0457 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaledtofit().json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.scaledToFit()","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofit()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE11scaledToFitQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scaledToFit","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"13.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"10.15","beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"13.0","beta":false,"deprecated":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","title":"scaledToFit()","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFit()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scaledToFit","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaledToFit()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scaledToFit","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"scaledToFit()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofit()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFit()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js.json new file mode 100644 index 0000000..f7d7114 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-478js"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-478js"},"kind":"symbol","metadata":{"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scaleEffect"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize","text":"CGSize"},{"text":", ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"deprecated":false,"introducedAt":"10.15","name":"macOS","unavailable":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"unavailable":false,"introducedAt":"6.0","beta":false,"name":"watchOS","deprecated":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"scaleEffect(_:anchor:)","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQrSo6CGSizeV_AA9UnitPointVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scaleEffect","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"scale","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize","text":"CGSize"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"text":" = .center) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scaleEffect(_:anchor:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(_:anchor:)-478js":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scaleEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize","text":"CGSize"},{"text":", ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"scaleEffect(_:anchor:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-478js","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-478js","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52.json new file mode 100644 index 0000000..71df757 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-6nq52"]}],"metadata":{"platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"name":"macOS","introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false},{"name":"tvOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"6.0"}],"extendedModule":"SwiftUI","symbolKind":"method","title":"scaleEffect(_:anchor:)","externalID":"s:7SwiftUI4ViewPAAE11scaleEffect_6anchorQr14CoreFoundation7CGFloatV_AA9UnitPointVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scaleEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.scaleEffect(_:anchor:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-6nq52","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scaleEffect"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"s"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"text":"anchor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":" = .center) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(_:anchor:)-6nq52":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-6nq52","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaleEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":", "},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-6nq52","kind":"symbol","title":"scaleEffect(_:anchor:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:).json new file mode 100644 index 0000000..f018bc8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:).json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(x:y:anchor:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.scaleEffect(x:y:anchor:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaleEffect"},{"text":"(","kind":"text"},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":" = 1.0, ","kind":"text"},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":" = 1.0, "},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":" = .center) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(x:y:anchor:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scaleEffect"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"kind":"text","text":": "},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"13.0"},{"unavailable":false,"introducedAt":"10.15","deprecated":false,"beta":false,"name":"macOS"},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE11scaleEffect1x1y6anchorQr14CoreFoundation7CGFloatV_AjA9UnitPointVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","title":"scaleEffect(x:y:anchor:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(x:y:anchor:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(x:y:anchor:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaleEffect"},{"kind":"text","text":"("},{"text":"x","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(x:y:anchor:)","kind":"symbol","title":"scaleEffect(x:y:anchor:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:).json new file mode 100644 index 0000000..03721a4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:)"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scenePadding","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"edges","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"kind":"text","text":" = .all) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scenePadding(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"15.0","unavailable":false},{"introducedAt":"12.0","unavailable":false,"name":"macOS","deprecated":false,"beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"15.0","beta":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"8.0","name":"watchOS"}],"roleHeading":"Instance Method","role":"symbol","extendedModule":"SwiftUI","title":"scenePadding(_:)","externalID":"s:7SwiftUI4ViewPAAE12scenePaddingyQrAA4EdgeO3SetVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scenePadding"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scenePadding(_:)":{"title":"scenePadding(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scenePadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:).json new file mode 100644 index 0000000..701bfef --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scenePadding"},{"kind":"text","text":"("},{"text":"ScenePadding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12ScenePaddingV"},{"text":", ","kind":"text"},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":".","kind":"text"},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"9.0"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"scenePadding(_:edges:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE12scenePadding_5edgesQrAA05SceneE0V_AA4EdgeO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:edges:)"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.scenePadding(_:edges:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:edges:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scenePadding"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"padding","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12ScenePaddingV","kind":"typeIdentifier","text":"ScenePadding"},{"kind":"text","text":", "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"text":" = .all) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scenePadding(_:edges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:edges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:edges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scenePadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI12ScenePaddingV","text":"ScenePadding","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"scenePadding(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:).json new file mode 100644 index 0000000..85860ce --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollBounceBehavior","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"behavior","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"ScrollBounceBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20ScrollBounceBehaviorV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"axes"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set","kind":"typeIdentifier"},{"text":" = [.vertical]) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE20scrollBounceBehavior_4axesQrAA06ScrolleF0V_AA4AxisO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scrollBounceBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20ScrollBounceBehaviorV","text":"ScrollBounceBehavior","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"axes"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.4","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"13.3","deprecated":false,"unavailable":false},{"beta":false,"name":"tvOS","introducedAt":"16.4","deprecated":false,"unavailable":false},{"introducedAt":"9.4","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"title":"scrollBounceBehavior(_:axes:)","extendedModule":"SwiftUI"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollbouncebehavior(_:axes:)"]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.scrollBounceBehavior(_:axes:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollBounceBehavior(_:axes:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollBounceBehavior(_:axes:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollbouncebehavior(_:axes:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollBounceBehavior(_:axes:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollBounceBehavior"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20ScrollBounceBehaviorV","text":"ScrollBounceBehavior","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"axes","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"scrollBounceBehavior(_:axes:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:).json new file mode 100644 index 0000000..b927de0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollclipdisabled(_:)"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollClipDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"disabled","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollClipDisabled(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE18scrollClipDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"scrollClipDisabled(_:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollClipDisabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"name":"tvOS","unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false},{"introducedAt":"10.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"extendedModule":"SwiftUI"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.scrollClipDisabled(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollClipDisabled(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollClipDisabled(_:)","kind":"symbol","role":"symbol","title":"scrollClipDisabled(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollClipDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollclipdisabled(_:)","abstract":[],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:).json new file mode 100644 index 0000000..a3f1d07 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollcontentbackground(_:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Method","role":"symbol","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"16.0","name":"iOS"},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"9.0"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scrollContentBackground","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"scrollContentBackground(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE23scrollContentBackgroundyQrAA10VisibilityOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollContentBackground(_:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollContentBackground(_:)"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollContentBackground","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"visibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollContentBackground(_:)":{"kind":"symbol","role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollContentBackground"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"scrollContentBackground(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollcontentbackground(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollContentBackground(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:).json new file mode 100644 index 0000000..a71f8eb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollDisabled(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollDisabled"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"disabled"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDisabled(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE14scrollDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"scrollDisabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"9.0"}],"role":"symbol","extendedModule":"SwiftUI"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollDisabled(_:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDisabled(_:)","abstract":[],"title":"scrollDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldisabled(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollDisabled"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:).json new file mode 100644 index 0000000..7f1208e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollDismissesKeyboard"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"mode","kind":"internalParam"},{"kind":"text","text":": "},{"text":"ScrollDismissesKeyboardMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI27ScrollDismissesKeyboardModeV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.scrollDismissesKeyboard(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDismissesKeyboard(_:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldismisseskeyboard(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"SwiftUI","role":"symbol","platforms":[{"unavailable":false,"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false},{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"macOS"},{"name":"tvOS","deprecated":false,"introducedAt":"16.0","beta":false,"unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"9.0","unavailable":false,"beta":false}],"title":"scrollDismissesKeyboard(_:)","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE23scrollDismissesKeyboardyQrAA06ScrolleF4ModeVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollDismissesKeyboard","kind":"identifier"},{"kind":"text","text":"("},{"text":"ScrollDismissesKeyboardMode","preciseIdentifier":"s:7SwiftUI27ScrollDismissesKeyboardModeV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollDismissesKeyboard(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollDismissesKeyboard","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI27ScrollDismissesKeyboardModeV","text":"ScrollDismissesKeyboardMode","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"scrollDismissesKeyboard(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldismisseskeyboard(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDismissesKeyboard(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:).json new file mode 100644 index 0000000..f4fb5f1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollIndicators","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"visibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI25ScrollIndicatorVisibilityV","text":"ScrollIndicatorVisibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"axes","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Axis","preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"text":" = [.vertical, .horizontal]) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicators(_:axes:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE16scrollIndicators_4axesQrAA25ScrollIndicatorVisibilityV_AA4AxisO3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollIndicators","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ScrollIndicatorVisibility","preciseIdentifier":"s:7SwiftUI25ScrollIndicatorVisibilityV"},{"kind":"text","text":", "},{"text":"axes","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"scrollIndicators(_:axes:)","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","name":"iOS","unavailable":false,"beta":false,"deprecated":false},{"name":"macOS","unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false},{"introducedAt":"16.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"name":"watchOS","deprecated":false,"introducedAt":"9.0","unavailable":false,"beta":false}],"role":"symbol","symbolKind":"method"},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollIndicators(_:axes:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicators(_:axes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicators(_:axes:)":{"title":"scrollIndicators(_:axes:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicators(_:axes:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollIndicators"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI25ScrollIndicatorVisibilityV","text":"ScrollIndicatorVisibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"axes","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicators(_:axes:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:).json new file mode 100644 index 0000000..22f5db8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"onAppear"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(onappear:)"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE21scrollIndicatorsFlash8onAppearQrSb_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"scrollIndicatorsFlash(onAppear:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"onAppear"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"17.0","deprecated":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"name":"watchOS","introducedAt":"10.0","unavailable":false,"deprecated":false}],"roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(onAppear:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.scrollIndicatorsFlash(onAppear:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicatorsFlash(onAppear:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"onAppear","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(onAppear:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(onappear:)","title":"scrollIndicatorsFlash(onAppear:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:).json new file mode 100644 index 0000000..cb61085 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollIndicatorsFlash(trigger:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(trigger:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(trigger:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"trigger","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"kind":"symbol","metadata":{"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"17.0"},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"10.0","name":"watchOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE21scrollIndicatorsFlash7triggerQrqd___tSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": some "},{"text":"Equatable","preciseIdentifier":"s:SQ","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","role":"symbol","symbolKind":"method","title":"scrollIndicatorsFlash(trigger:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicatorsFlash(trigger:)":{"abstract":[],"kind":"symbol","title":"scrollIndicatorsFlash(trigger:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(trigger:)","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(trigger:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollIndicatorsFlash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"trigger"},{"text":": some ","kind":"text"},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:).json new file mode 100644 index 0000000..fd99f04 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrollposition(id:anchor:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollPosition(id:anchor:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollPosition"},{"text":"(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<(some "},{"text":"Hashable","kind":"typeIdentifier","preciseIdentifier":"s:SH"},{"kind":"text","text":")?>, "},{"text":"anchor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"text":"? = nil) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","title":"scrollPosition(id:anchor:)","externalID":"s:7SwiftUI4ViewPAAE14scrollPosition2id6anchorQrAA7BindingVyqd__SgG_AA9UnitPointVSgtSHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollPosition"},{"kind":"text","text":"("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<(some "},{"preciseIdentifier":"s:SH","text":"Hashable","kind":"typeIdentifier"},{"text":")?>, ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"name":"iOS","deprecated":false,"introducedAt":"17.0","unavailable":false},{"deprecated":false,"beta":false,"unavailable":false,"name":"macOS","introducedAt":"14.0"},{"name":"tvOS","beta":false,"deprecated":false,"introducedAt":"17.0","unavailable":false},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollPosition(id:anchor:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollPosition(id:anchor:)":{"title":"scrollPosition(id:anchor:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollposition(id:anchor:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollPosition","kind":"identifier"},{"text":"(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<(some ","kind":"text"},{"kind":"typeIdentifier","text":"Hashable","preciseIdentifier":"s:SH"},{"text":")?>, ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollPosition(id:anchor:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:).json new file mode 100644 index 0000000..c19940c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollTargetBehavior"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"behavior"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","text":"ScrollTargetBehavior","preciseIdentifier":"s:7SwiftUI20ScrollTargetBehaviorP"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetbehavior(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetBehavior(_:)"},"metadata":{"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","title":"scrollTargetBehavior(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE20scrollTargetBehavioryQrqd__AA06ScrolleF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"17.0","beta":false,"name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","beta":false,"unavailable":false,"introducedAt":"14.0","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0"},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollTargetBehavior"},{"kind":"text","text":"(some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20ScrollTargetBehaviorP","text":"ScrollTargetBehavior"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.scrollTargetBehavior(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTargetBehavior(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetBehavior(_:)","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetbehavior(_:)","title":"scrollTargetBehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollTargetBehavior","kind":"identifier"},{"text":"(some ","kind":"text"},{"text":"ScrollTargetBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20ScrollTargetBehaviorP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:).json new file mode 100644 index 0000000..8b8fcaf --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:).json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetLayout(isEnabled:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollTargetLayout","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18scrollTargetLayout9isEnabledQrSb_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","extendedModule":"SwiftUI","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"beta":false,"unavailable":false,"deprecated":false,"name":"tvOS","introducedAt":"17.0"},{"name":"watchOS","deprecated":false,"introducedAt":"10.0","unavailable":false,"beta":false}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollTargetLayout","kind":"identifier"},{"text":"(","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","title":"scrollTargetLayout(isEnabled:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.scrollTargetLayout(isEnabled:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetlayout(isenabled:)"]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTargetLayout(isEnabled:)":{"title":"scrollTargetLayout(isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetlayout(isenabled:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scrollTargetLayout","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetLayout(isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:).json new file mode 100644 index 0000000..619b9e7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.scrollTransition(_:axis:transition:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollTransition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"configuration","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV","text":"ScrollTransitionConfiguration"},{"kind":"text","text":" = .interactive, "},{"kind":"externalParam","text":"axis"},{"kind":"text","text":": "},{"text":"Axis","preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier"},{"kind":"text","text":"? = nil, "},{"kind":"externalParam","text":"transition"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"ScrollTransitionPhase","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI12VisualEffectP","text":"VisualEffect","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(_:axis:transition:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(_:axis:transition:)"},"metadata":{"platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS"},{"beta":false,"introducedAt":"14.0","unavailable":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"10.0","beta":false}],"externalID":"s:7SwiftUI4ViewPAAE16scrollTransition_4axis10transitionQrAA06ScrollE13ConfigurationV_AA4AxisOSgqd__AA17EmptyVisualEffectV_AA0hE5PhaseOtYbctAA0lM0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollTransition","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"axis"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"transition"},{"text":": (","kind":"text"},{"text":"EmptyVisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"ScrollTransitionPhase","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO"},{"text":") -> some ","kind":"text"},{"text":"VisualEffect","preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","title":"scrollTransition(_:axis:transition:)"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTransition(_:axis:transition:)":{"title":"scrollTransition(_:axis:transition:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(_:axis:transition:)","type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(_:axis:transition:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollTransition","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"axis"},{"text":": ","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"transition"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","text":"ScrollTransitionPhase"},{"kind":"text","text":") -> some "},{"text":"VisualEffect","preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:).json new file mode 100644 index 0000000..0084f69 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollTransition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"topLeading"},{"kind":"text","text":": "},{"text":"ScrollTransitionConfiguration","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"bottomTrailing"},{"text":": ","kind":"text"},{"text":"ScrollTransitionConfiguration","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"text":", ","kind":"text"},{"text":"axis","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"transition"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","text":"ScrollTransitionPhase"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VisualEffectP","text":"VisualEffect"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(topLeading:bottomTrailing:axis:transition:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(topleading:bottomtrailing:axis:transition:)"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE16scrollTransition10topLeading14bottomTrailing4axis10transitionQrAA06ScrollE13ConfigurationV_AjA4AxisOSgqd__AA17EmptyVisualEffectV_AA0lE5PhaseOtYbctAA0pQ0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"17.0","unavailable":false,"beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"macOS"},{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"10.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","role":"symbol","title":"scrollTransition(topLeading:bottomTrailing:axis:transition:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollTransition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"topLeading"},{"kind":"text","text":": "},{"text":"ScrollTransitionConfiguration","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"text":", ","kind":"text"},{"text":"bottomTrailing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV","text":"ScrollTransitionConfiguration"},{"kind":"text","text":", "},{"text":"axis","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Axis","preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"transition","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"EmptyVisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV"},{"kind":"text","text":", "},{"text":"ScrollTransitionPhase","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"text":"VisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VisualEffectP"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.scrollTransition(topLeading:bottomTrailing:axis:transition:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTransition(topLeading:bottomTrailing:axis:transition:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollTransition"},{"kind":"text","text":"("},{"text":"topLeading","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bottomTrailing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"text":", ","kind":"text"},{"text":"axis","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"transition","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","kind":"typeIdentifier","text":"ScrollTransitionPhase"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier","text":"VisualEffect"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"scrollTransition(topLeading:bottomTrailing:axis:transition:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(topleading:bottomtrailing:axis:transition:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(topLeading:bottomTrailing:axis:transition:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d.json new file mode 100644 index 0000000..2654f81 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d.json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:editableTokens:isPresented:placement:prompt:token:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"RandomAccessCollection","preciseIdentifier":"s:Sk","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0"},{"unavailable":false,"introducedAt":"14.0","name":"macOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVAA4TextVSgqd_0_ALy7ElementSTQyd__GctSkRd__SmRd__AaBRd_0_s12IdentifiableAVRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":">) -> some ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d","role":"symbol","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz.json new file mode 100644 index 0000000..4375c30 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz.json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"introducedAt":"17.0","deprecated":false,"name":"iOS","unavailable":false,"beta":false},{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_ALy7ElementSTQyd__GctSkRd__SmRd__AaBRd_0_s12IdentifiableAURQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"editableTokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:editableTokens:isPresented:placement:prompt:token:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":" = .automatic, "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomAccessCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sk"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) -> some "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1.json new file mode 100644 index 0000000..902b825 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1.json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:editableTokens:isPresented:placement:prompt:token:)"},{"text":".","type":"text"}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVqd_0_qd_1_ALy7ElementSTQyd__GctSkRd__SmRd__SyRd_0_AaBRd_1_s12IdentifiableASRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"17.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": some ","kind":"text"},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": some "},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sk","text":"RandomAccessCollection","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1","type":"topic","abstract":[],"title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": some "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo.json new file mode 100644 index 0000000..f615a83 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo.json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-34tbo","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-34tbo"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":">) -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVqd_0_qd_1_AKy7ElementSTQyd__GctSkRd__SmRd__SyRd_0_AaBRd_1_s12IdentifiableAQRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"introducedAt":"14.0","unavailable":false,"deprecated":false,"beta":false,"name":"macOS"}],"title":"searchable(text:editableTokens:placement:prompt:token:)","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:editableTokens:placement:prompt:token:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomAccessCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sk"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-34tbo":{"kind":"symbol","title":"searchable(text:editableTokens:placement:prompt:token:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) -> some "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-34tbo","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-34tbo"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o.json new file mode 100644 index 0000000..4c5d482 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:editableTokens:placement:prompt:token:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"title":"searchable(text:editableTokens:placement:prompt:token:)","role":"symbol","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"17.0"},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"macOS"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVAA4TextVSgqd_0_AKy7ElementSTQyd__GctSkRd__SmRd__AaBRd_0_s12IdentifiableATRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":"?, ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":">) -> some ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-3ns5o"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"editableTokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"? = nil, "},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"token","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":">) -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"RandomAccessCollection","preciseIdentifier":"s:Sk","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-3ns5o"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-3ns5o":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":">) -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"searchable(text:editableTokens:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-3ns5o","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-3ns5o"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius.json new file mode 100644 index 0000000..b63e65f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":">) -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"searchable(text:editableTokens:placement:prompt:token:)","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text14editableTokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_AKy7ElementSTQyd__GctSkRd__SmRd__AaBRd_0_s12IdentifiableASRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-8jius","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":">) -> some ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-8jius"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:editableTokens:placement:prompt:token:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-8jius":{"abstract":[],"title":"searchable(text:editableTokens:placement:prompt:token:)","kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-8jius","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-8jius","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":">) -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t.json new file mode 100644 index 0000000..b62b9e3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-1yx1t"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:isPresented:placement:prompt:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-1yx1t"},"sections":[],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text11isPresented9placement6promptQrAA7BindingVySSG_AJySbGAA20SearchFieldPlacementVAA18LocalizedStringKeyVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"name":"macOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false}],"symbolKind":"method","title":"searchable(text:isPresented:placement:prompt:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-1yx1t":{"title":"searchable(text:isPresented:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-1yx1t","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-1yx1t","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp.json new file mode 100644 index 0000000..c749014 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-67lnp"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-67lnp"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"symbolKind":"method","title":"searchable(text:isPresented:placement:prompt:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE10searchable4text11isPresented9placement6promptQrAA7BindingVySSG_AJySbGAA20SearchFieldPlacementVqd__tSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"14.0"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:isPresented:placement:prompt:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-67lnp":{"title":"searchable(text:isPresented:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-67lnp","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-67lnp","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax.json new file mode 100644 index 0000000..b48d2b1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":"? = nil) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-6slax"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"17.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"beta":false,"name":"macOS","introducedAt":"14.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"searchable(text:isPresented:placement:prompt:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text11isPresented9placement6promptQrAA7BindingVySSG_AJySbGAA20SearchFieldPlacementVAA4TextVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:isPresented:placement:prompt:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-6slax"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-6slax":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"searchable(text:isPresented:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-6slax","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-6slax"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf.json new file mode 100644 index 0000000..33a1d72 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-5aijf"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-5aijf"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"searchable(text:placement:prompt:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0","name":"iOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0","name":"macOS"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS"}],"role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":"? = nil) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-5aijf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-5aijf","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-5aijf","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q.json new file mode 100644 index 0000000..71cb433 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":" = .automatic, "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"searchable(text:placement:prompt:)","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVqd__tSyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-6x0q","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-6x0q"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-6x0q":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"searchable(text:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-6x0q","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-6x0q"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770.json new file mode 100644 index 0000000..10704a4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770.json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6promptQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0"},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"name":"watchOS","introducedAt":"8.0","beta":false,"deprecated":false,"unavailable":false}],"symbolKind":"method","title":"searchable(text:placement:prompt:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-9e770"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-9e770"},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-9e770":{"title":"searchable(text:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-9e770","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-9e770","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2.json new file mode 100644 index 0000000..9246f46 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2.json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:suggestions:)"},{"type":"text","text":"."}],"sections":[],"deprecationSummary":[{"inlineContent":[{"text":"Use the searchable modifier with the searchSuggestions modifier","type":"text"}],"type":"paragraph"}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","title":"searchable(text:placement:prompt:suggestions:)","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA4TextVSgqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"platforms":[{"unavailable":false,"beta":false,"message":"Use the searchable modifier with the searchSuggestions modifier","name":"iOS","introducedAt":"15.0","deprecated":false,"deprecatedAt":"100000.0"},{"message":"Use the searchable modifier with the searchSuggestions modifier","deprecated":false,"introducedAt":"12.0","name":"macOS","deprecatedAt":"100000.0","beta":false,"unavailable":false},{"introducedAt":"15.0","deprecatedAt":"100000.0","message":"Use the searchable modifier with the searchSuggestions modifier","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"deprecatedAt":"100000.0","introducedAt":"8.0","message":"Use the searchable modifier with the searchSuggestions modifier","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"? = nil, "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"kind":"text","text":" "},{"text":"suggestions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4fef2"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4fef2","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-4fef2":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4fef2","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4fef2","role":"symbol","title":"searchable(text:placement:prompt:suggestions:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g.json new file mode 100644 index 0000000..e741817 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4ot2g"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4ot2g"]}],"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use the searchable modifier with the searchSuggestions modifier"}],"type":"paragraph"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"kind":"text","text":": () -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"searchable(text:placement:prompt:suggestions:)","symbolKind":"method","role":"symbol","platforms":[{"name":"iOS","introducedAt":"15.0","unavailable":false,"message":"Use the searchable modifier with the searchSuggestions modifier","deprecatedAt":"100000.0","beta":false,"deprecated":false},{"message":"Use the searchable modifier with the searchSuggestions modifier","beta":false,"deprecatedAt":"100000.0","unavailable":false,"deprecated":false,"introducedAt":"12.0","name":"macOS"},{"introducedAt":"15.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"deprecatedAt":"100000.0","message":"Use the searchable modifier with the searchSuggestions modifier"},{"introducedAt":"8.0","name":"watchOS","message":"Use the searchable modifier with the searchSuggestions modifier","deprecatedAt":"100000.0","deprecated":false,"unavailable":false,"beta":false}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVAA18LocalizedStringKeyVqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:suggestions:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-4ot2g":{"title":"searchable(text:placement:prompt:suggestions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4ot2g","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4ot2g","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c.json new file mode 100644 index 0000000..c55b3fd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"deprecationSummary":[{"inlineContent":[{"type":"text","text":"Use the searchable modifier with the searchSuggestions modifier"}],"type":"paragraph"}],"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-9wb1c","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:placement:prompt:suggestions:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-9wb1c"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text9placement6prompt11suggestionsQrAA7BindingVySSG_AA20SearchFieldPlacementVqd_0_qd__yXEtAaBRd__SyRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","title":"searchable(text:placement:prompt:suggestions:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","role":"symbol","symbolKind":"method","platforms":[{"unavailable":false,"message":"Use the searchable modifier with the searchSuggestions modifier","introducedAt":"15.0","beta":false,"name":"iOS","deprecatedAt":"100000.0","deprecated":false},{"name":"macOS","deprecatedAt":"100000.0","introducedAt":"12.0","beta":false,"unavailable":false,"message":"Use the searchable modifier with the searchSuggestions modifier","deprecated":false},{"introducedAt":"15.0","message":"Use the searchable modifier with the searchSuggestions modifier","beta":false,"deprecated":false,"name":"tvOS","unavailable":false,"deprecatedAt":"100000.0"},{"deprecatedAt":"100000.0","deprecated":false,"introducedAt":"8.0","unavailable":false,"message":"Use the searchable modifier with the searchSuggestions modifier","beta":false,"name":"watchOS"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"suggestions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":", "},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"suggestions"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-9wb1c":{"deprecated":true,"title":"searchable(text:placement:prompt:suggestions:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-9wb1c","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-9wb1c","kind":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm.json new file mode 100644 index 0000000..2eae8cd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"searchable(text:tokens:isPresented:placement:prompt:token:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVqd_1_qd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_SyRd_1_s12IdentifiableASRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"beta":false,"deprecated":false,"name":"macOS","introducedAt":"14.0","unavailable":false}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:tokens:isPresented:placement:prompt:token:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomAccessCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sk"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f.json new file mode 100644 index 0000000..9d3ba84 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f.json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVAA4TextVSgqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableAVRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"? = nil, ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sk","text":"RandomAccessCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:tokens:isPresented:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go.json new file mode 100644 index 0000000..4a2a289 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go.json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GALySbGAA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableAURQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false},{"beta":false,"name":"macOS","introducedAt":"14.0","deprecated":false,"unavailable":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomAccessCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sk"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"RangeReplaceableCollection","preciseIdentifier":"s:Sm","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:tokens:isPresented:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq.json new file mode 100644 index 0000000..8251d1e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq.json @@ -0,0 +1 @@ +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-3i3vq"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.searchable(text:tokens:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-3i3vq","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"? = nil, "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"token"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sk","text":"RandomAccessCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"searchable(text:tokens:placement:prompt:token:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVAA4TextVSgqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableATRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0","beta":false},{"beta":false,"introducedAt":"13.0","unavailable":false,"name":"macOS","deprecated":false}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-3i3vq":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-3i3vq","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-3i3vq","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?, ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"searchable(text:tokens:placement:prompt:token:)","type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh.json new file mode 100644 index 0000000..36f74e4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0"},{"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"searchable(text:tokens:placement:prompt:token:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableASRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-6jzmh"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:tokens:placement:prompt:token:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-6jzmh"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomAccessCollection","preciseIdentifier":"s:Sk","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-6jzmh":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-6jzmh","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-6jzmh","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"searchable(text:tokens:placement:prompt:token:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6.json new file mode 100644 index 0000000..7dfba2d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens9placement6prompt5tokenQrAA7BindingVySSG_AKyqd__GAA20SearchFieldPlacementVqd_1_qd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_SyRd_1_s12IdentifiableAQRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"searchable(text:tokens:placement:prompt:token:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","beta":false,"introducedAt":"16.0"},{"deprecated":false,"name":"macOS","introducedAt":"13.0","unavailable":false,"beta":false}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"RangeReplaceableCollection","preciseIdentifier":"s:Sm","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","kind":"typeIdentifier","text":"StringProtocol"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-7pbb6"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchable(text:tokens:placement:prompt:token:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-7pbb6"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-7pbb6":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-7pbb6","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-7pbb6","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"searchable(text:tokens:placement:prompt:token:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry.json new file mode 100644 index 0000000..32e5bbe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"token","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"RangeReplaceableCollection","preciseIdentifier":"s:Sm"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Identifiable","preciseIdentifier":"s:s12IdentifiableP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","metadata":{"role":"symbol","title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_AMyqd__GAoMySbGAA20SearchFieldPlacementVAA4TextVSgqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableAWRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"?, "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","symbolKind":"method","platforms":[{"beta":false,"unavailable":false,"name":"iOS","introducedAt":"17.0","deprecated":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7.json new file mode 100644 index 0000000..760a896 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":", "},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomAccessCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sk"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"RangeReplaceableCollection","preciseIdentifier":"s:Sm","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"kind":"text","text":"\n"}]}]}],"metadata":{"title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"17.0","deprecated":false,"unavailable":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"name":"macOS","beta":false}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_AMyqd__GAoMySbGAA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_7ElementSTQyd__ctSkRd__SmRd__AaBRd_0_s12IdentifiableAVRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns.json new file mode 100644 index 0000000..8c7792b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"name":"iOS","introducedAt":"17.0"},{"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"14.0","beta":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens11isPresented9placement6prompt5tokenQrAA7BindingVySSG_AMyqd__GAoMySbGAA20SearchFieldPlacementVqd_1_qd_0_7ElementSTQyd__ctSMRd__SkRd__SmRd__AaBRd_0_SyRd_1_s12IdentifiableATRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"suggestedTokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":" = .automatic, ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"MutableCollection","kind":"typeIdentifier","preciseIdentifier":"s:SM"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"RandomAccessCollection","preciseIdentifier":"s:Sk"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"RangeReplaceableCollection","preciseIdentifier":"s:Sm"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns":{"title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a.json new file mode 100644 index 0000000..de3c366 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GAnA20SearchFieldPlacementVAA4TextVSgqd_0_7ElementSTQyd__ctSMRd__SkRd__SmRd__AaBRd_0_s12IdentifiableAURQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method","extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"16.0","unavailable":false,"deprecated":false},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"13.0"}],"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"suggestedTokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"? = nil, ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"MutableCollection","preciseIdentifier":"s:SM"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"RangeReplaceableCollection","kind":"typeIdentifier","preciseIdentifier":"s:Sm"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a":{"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj.json new file mode 100644 index 0000000..778ca13 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj.json @@ -0,0 +1 @@ +{"metadata":{"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GAnA20SearchFieldPlacementVqd_1_qd_0_7ElementSTQyd__ctSMRd__SkRd__SmRd__AaBRd_0_SyRd_1_s12IdentifiableARRQr1_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"16.0","name":"iOS"},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchable(text:tokens:suggestedTokens:placement:prompt:token:)"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":" = .automatic, "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"MutableCollection","preciseIdentifier":"s:SM","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"StringProtocol","kind":"typeIdentifier","preciseIdentifier":"s:Sy"},{"text":", ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj","title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw.json new file mode 100644 index 0000000..afdc3a9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw.json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"extendedModule":"SwiftUI","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"suggestedTokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","externalID":"s:7SwiftUI4ViewPAAE10searchable4text6tokens15suggestedTokens9placement6prompt5tokenQrAA7BindingVySSG_ALyqd__GAnA20SearchFieldPlacementVAA18LocalizedStringKeyVqd_0_7ElementSTQyd__ctSMRd__SkRd__SmRd__AaBRd_0_s12IdentifiableATRQr0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"introducedAt":"16.0","beta":false,"unavailable":false,"name":"iOS","deprecated":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"macOS"}],"roleHeading":"Instance Method","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":" = .automatic, ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SM","text":"MutableCollection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sk","text":"RandomAccessCollection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sm","text":"RangeReplaceableCollection","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw":{"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh.json new file mode 100644 index 0000000..9d906fc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-95mzh"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-95mzh","interfaceLanguage":"swift"},"metadata":{"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"name":"macOS","introducedAt":"12.0","beta":false,"unavailable":false},{"introducedAt":"15.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"deprecated":false,"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchCompletion","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","title":"searchCompletion(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE16searchCompletionyQrSSF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchCompletion(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"completion","kind":"internalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchCompletion(_:)-95mzh":{"title":"searchCompletion(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-95mzh","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-95mzh","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b.json new file mode 100644 index 0000000..ddd8e7a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"token","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:s12IdentifiableP","text":"Identifiable","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-9im0b"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchCompletion(_:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"searchCompletion(_:)","externalID":"s:7SwiftUI4ViewPAAE16searchCompletionyQrqd__s12IdentifiableRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchCompletion"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"16.0","beta":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false}],"role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-9im0b","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchCompletion(_:)-9im0b":{"title":"searchCompletion(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-9im0b","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-9im0b","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:).json new file mode 100644 index 0000000..acebbef --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchdictationbehavior(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchDictationBehavior(_:)"},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchDictationBehavior"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26TextInputDictationBehaviorV","text":"TextInputDictationBehavior"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"roleHeading":"Instance Method","title":"searchDictationBehavior(_:)","platforms":[{"name":"iOS","unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false},{"introducedAt":"1.0","name":"visionOS","unavailable":false,"deprecated":false,"beta":false}],"symbolKind":"method","role":"symbol","extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE23searchDictationBehavioryQrAA09TextInputeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchDictationBehavior"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"dictationBehavior","kind":"internalParam"},{"kind":"text","text":": "},{"text":"TextInputDictationBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26TextInputDictationBehaviorV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchDictationBehavior(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchDictationBehavior(_:)":{"role":"symbol","type":"topic","abstract":[],"title":"searchDictationBehavior(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchDictationBehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchDictationBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"text":"TextInputDictationBehavior","preciseIdentifier":"s:7SwiftUI26TextInputDictationBehaviorV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchdictationbehavior(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:).json new file mode 100644 index 0000000..b751a1c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:).json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchPresentationToolbarBehavior(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchPresentationToolbarBehavior(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchPresentationToolbarBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"behavior","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI33SearchPresentationToolbarBehaviorV","text":"SearchPresentationToolbarBehavior"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"title":"searchPresentationToolbarBehavior(_:)","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE33searchPresentationToolbarBehavioryQrAA06SearchefG0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchPresentationToolbarBehavior"},{"text":"(","kind":"text"},{"text":"SearchPresentationToolbarBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI33SearchPresentationToolbarBehaviorV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"17.1","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"14.1","name":"macOS"},{"name":"tvOS","beta":false,"introducedAt":"17.1","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"10.1"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchpresentationtoolbarbehavior(_:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchPresentationToolbarBehavior(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchpresentationtoolbarbehavior(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchPresentationToolbarBehavior(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchPresentationToolbarBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"SearchPresentationToolbarBehavior","preciseIdentifier":"s:7SwiftUI33SearchPresentationToolbarBehaviorV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"searchPresentationToolbarBehavior(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:).json new file mode 100644 index 0000000..cf4e6b6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:).json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12searchScopes_10activation_QrAA7BindingVyqd__G_AA21SearchScopeActivationVqd_0_yXEtSHRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"searchScopes(_:activation:_:)","roleHeading":"Instance Method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.4","beta":false},{"unavailable":false,"introducedAt":"13.3","name":"macOS","beta":false,"deprecated":false},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"16.4","beta":false}],"extendedModule":"SwiftUI","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchScopes"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":", "},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"activation","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchScopeActivation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21SearchScopeActivationV"},{"kind":"text","text":", () -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchScopes"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"scope","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"activation","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI21SearchScopeActivationV","text":"SearchScopeActivation","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"scopes"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:activation:_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.searchScopes(_:activation:_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:activation:_:)"},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchScopes(_:activation:_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:activation:_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:activation:_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchScopes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"activation","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchScopeActivation","preciseIdentifier":"s:7SwiftUI21SearchScopeActivationV","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"searchScopes(_:activation:_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:).json new file mode 100644 index 0000000..c115fc0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:scopes:)"},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchScopes(_:scopes:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE12searchScopes_6scopesQrAA7BindingVyqd__G_qd_0_yXEtSHRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"searchScopes(_:scopes:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchScopes"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":">, "},{"text":"scopes","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"16.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"16.4","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"}],"role":"symbol","extendedModule":"SwiftUI"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:scopes:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchScopes"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"scope","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder","kind":"attribute"},{"text":" ","kind":"text"},{"text":"scopes","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Hashable","kind":"typeIdentifier","preciseIdentifier":"s:SH"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchScopes(_:scopes:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:scopes:)","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchScopes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"scopes","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","title":"searchScopes(_:scopes:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:scopes:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:).json new file mode 100644 index 0000000..91fe1fe --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchSuggestions","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"text":" ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"13.0","deprecated":false,"name":"macOS"},{"unavailable":false,"introducedAt":"16.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"9.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE17searchSuggestionsyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"searchSuggestions(_:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchSuggestions"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.searchSuggestions(_:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchSuggestions(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchSuggestions","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:)","title":"searchSuggestions(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:).json new file mode 100644 index 0000000..a6b5712 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:for:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.searchSuggestions(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchSuggestions","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"visibility"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"text":"placements","kind":"internalParam"},{"kind":"text","text":": "},{"text":"SearchSuggestionsPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV3SetV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:for:)"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE17searchSuggestions_3forQrAA10VisibilityO_AA06SearchE9PlacementV3SetVtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","title":"searchSuggestions(_:for:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchSuggestions","kind":"identifier"},{"kind":"text","text":"("},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV","text":"SearchSuggestionsPlacement","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false},{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"macOS","unavailable":false},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"9.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchSuggestions(_:for:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchSuggestions","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"SearchSuggestionsPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV"},{"text":".","kind":"text"},{"text":"Set","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV3SetV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"searchSuggestions(_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:for:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:for:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:).json new file mode 100644 index 0000000..a0ed74d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"SwiftUI","title":"selectionDisabled(_:)","externalID":"s:7SwiftUI4ViewPAAE17selectionDisabledyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"17.0"},{"name":"macOS","introducedAt":"14.0","beta":false,"deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"selectionDisabled"},{"text":"(","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"selectionDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"isDisabled","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/selectionDisabled(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.selectionDisabled(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/selectiondisabled(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/selectionDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/selectiondisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/selectionDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"selectionDisabled"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"selectionDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:).json new file mode 100644 index 0000000..13c4258 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sensoryFeedback"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"feedback","kind":"internalParam"},{"kind":"text","text":": "},{"text":"SensoryFeedback","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.sensoryFeedback(_:trigger:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"14.0"},{"introducedAt":"17.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sensoryFeedback"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","text":"SensoryFeedback"},{"text":", ","kind":"text"},{"text":"trigger","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE15sensoryFeedback_7triggerQrAA07SensoryE0V_qd__tSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","extendedModule":"SwiftUI","roleHeading":"Instance Method","title":"sensoryFeedback(_:trigger:)","symbolKind":"method"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:)"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(_:trigger:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sensoryFeedback"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"SensoryFeedback","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:)","kind":"symbol","title":"sensoryFeedback(_:trigger:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:).json new file mode 100644 index 0000000..eff1356 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sensoryFeedback"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"feedback","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","kind":"typeIdentifier","text":"SensoryFeedback"},{"kind":"text","text":", "},{"text":"trigger","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"condition"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"Equatable","preciseIdentifier":"s:SQ","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"17.0","beta":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"name":"macOS","beta":false},{"introducedAt":"17.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"introducedAt":"10.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE15sensoryFeedback_7trigger9conditionQrAA07SensoryE0V_qd__Sbqd___qd__tctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"sensoryFeedback","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","text":"SensoryFeedback","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"condition","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"sensoryFeedback(_:trigger:condition:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:condition:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.sensoryFeedback(_:trigger:condition:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:condition:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(_:trigger:condition:)":{"title":"sensoryFeedback(_:trigger:condition:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:condition:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sensoryFeedback","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"SensoryFeedback","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"condition","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:condition:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:).json new file mode 100644 index 0000000..d9f56fb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:).json @@ -0,0 +1 @@ +{"metadata":{"title":"sensoryFeedback(trigger:_:)","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE15sensoryFeedback7trigger_Qrqd___AA07SensoryE0VSgqd___qd__tctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS","beta":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"name":"tvOS","beta":false,"introducedAt":"17.0","deprecated":false,"unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sensoryFeedback"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":", (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"SensoryFeedback","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(trigger:_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sensoryFeedback","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"trigger","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"feedback"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"text":" (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"SensoryFeedback","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}],"kind":"declarations"}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.sensoryFeedback(trigger:_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(trigger:_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(trigger:_:)":{"title":"sensoryFeedback(trigger:_:)","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(trigger:_:)","kind":"symbol","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(trigger:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sensoryFeedback"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"trigger","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"SensoryFeedback","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:).json new file mode 100644 index 0000000..67f675c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.shadow(color:radius:x:y:)"},{"text":".","type":"text"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/shadow(color:radius:x:y:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"shadow(color:radius:x:y:)","platforms":[{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"introducedAt":"10.15","unavailable":false,"name":"macOS","beta":false},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"tvOS","beta":false},{"unavailable":false,"introducedAt":"6.0","deprecated":false,"name":"watchOS","beta":false}],"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE6shadow5color6radius1x1yQrAA5ColorV_14CoreFoundation7CGFloatVA2MtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"shadow"},{"text":"(","kind":"text"},{"text":"color","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"kind":"text","text":", "},{"text":"radius","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"x","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/shadow(color:radius:x:y:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"shadow","kind":"identifier"},{"text":"(","kind":"text"},{"text":"color","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"text":" = Color(.sRGBLinear, white: 0, opacity: 0.33), ","kind":"text"},{"kind":"externalParam","text":"radius"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":", "},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":" = 0, "},{"text":"y","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":" = 0) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/shadow(color:radius:x:y:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"shadow","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"color"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"text":", ","kind":"text"},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"shadow(color:radius:x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/shadow(color:radius:x:y:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/shadow(color:radius:x:y:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:).json new file mode 100644 index 0000000..12bef47 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(ispresented:ondismiss:content:)"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.sheet(isPresented:onDismiss:content:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(isPresented:onDismiss:content:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE5sheet11isPresented9onDismiss7contentQrAA7BindingVySbG_yycSgqd__yctAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.15"},{"name":"tvOS","introducedAt":"13.0","beta":false,"deprecated":false,"unavailable":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"6.0","name":"watchOS"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","title":"sheet(isPresented:onDismiss:content:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sheet"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"onDismiss"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":")?, "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sheet"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"onDismiss","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")? = nil, "},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sheet(isPresented:onDismiss:content:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sheet","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"onDismiss","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":")?, "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(isPresented:onDismiss:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(ispresented:ondismiss:content:)","type":"topic","title":"sheet(isPresented:onDismiss:content:)","role":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:).json new file mode 100644 index 0000000..39fa2cb --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:).json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"introducedAt":"13.0","name":"iOS","unavailable":false,"deprecated":false,"beta":false},{"name":"macOS","beta":false,"deprecated":false,"introducedAt":"10.15","unavailable":false},{"unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"introducedAt":"6.0","unavailable":false,"beta":false}],"title":"sheet(item:onDismiss:content:)","externalID":"s:7SwiftUI4ViewPAAE5sheet4item9onDismiss7contentQrAA7BindingVyqd__SgG_yycSgqd_0_qd__cts12IdentifiableRd__AaBRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sheet"},{"kind":"text","text":"<"},{"text":"Item","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.sheet(item:onDismiss:content:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(item:onDismiss:content:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sheet","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Item","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":")? = nil, "},{"text":"@","kind":"attribute"},{"text":"ViewBuilder","kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": "},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Item"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":" : "},{"text":"Identifiable","kind":"typeIdentifier","preciseIdentifier":"s:s12IdentifiableP"},{"text":", ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(item:ondismiss:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sheet(item:onDismiss:content:)":{"title":"sheet(item:onDismiss:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(item:ondismiss:content:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sheet"},{"text":"<","kind":"text"},{"text":"Item","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(item:onDismiss:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:).json new file mode 100644 index 0000000..a04565d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/simultaneousgesture(_:including:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.simultaneousGesture(_:including:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/simultaneousGesture(_:including:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"simultaneousGesture","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"gesture"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"including","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"mask"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV","text":"GestureMask"},{"kind":"text","text":" = .all) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Gesture","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7GestureP"},{"text":"\n","kind":"text"}]}]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE19simultaneousGesture_9includingQrqd___AA0E4MaskVtAA0E0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"simultaneousGesture","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"text":"including","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"GestureMask","preciseIdentifier":"s:7SwiftUI11GestureMaskV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","title":"simultaneousGesture(_:including:)","extendedModule":"SwiftUI","platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"name":"watchOS","introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"sections":[],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/simultaneousGesture(_:including:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/simultaneousgesture(_:including:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/simultaneousGesture(_:including:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"simultaneousGesture"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"text":"including","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"GestureMask","preciseIdentifier":"s:7SwiftUI11GestureMaskV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"simultaneousGesture(_:including:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:).json new file mode 100644 index 0000000..53d0a02 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:).json @@ -0,0 +1 @@ +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.speechAdjustedPitch(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"speechAdjustedPitch"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","platforms":[{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","deprecated":false,"introducedAt":"8.0","unavailable":false,"beta":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE19speechAdjustedPitchyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"speechAdjustedPitch(_:)","extendedModule":"SwiftUI"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"speechAdjustedPitch"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/speechadjustedpitch(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAdjustedPitch(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAdjustedPitch(_:)":{"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAdjustedPitch(_:)","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechadjustedpitch(_:)","title":"speechAdjustedPitch(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"speechAdjustedPitch","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:).json new file mode 100644 index 0000000..f689b3b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"speechAlwaysIncludesPunctuation","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAlwaysIncludesPunctuation(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.speechAlwaysIncludesPunctuation(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/speechalwaysincludespunctuation(_:)"]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"8.0"}],"symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE31speechAlwaysIncludesPunctuationyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"speechAlwaysIncludesPunctuation"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","title":"speechAlwaysIncludesPunctuation(_:)"},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAlwaysIncludesPunctuation(_:)":{"title":"speechAlwaysIncludesPunctuation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechalwaysincludespunctuation(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"speechAlwaysIncludesPunctuation","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAlwaysIncludesPunctuation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:).json new file mode 100644 index 0000000..a272fe3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.speechAnnouncementsQueued(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"speechAnnouncementsQueued","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/speechannouncementsqueued(_:)"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"15.0"},{"beta":false,"introducedAt":"12.0","deprecated":false,"unavailable":false,"name":"macOS"},{"name":"tvOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"15.0"},{"introducedAt":"8.0","unavailable":false,"beta":false,"deprecated":false,"name":"watchOS"}],"role":"symbol","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"speechAnnouncementsQueued","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"speechAnnouncementsQueued(_:)","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE25speechAnnouncementsQueuedyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAnnouncementsQueued(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAnnouncementsQueued(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"speechAnnouncementsQueued","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"speechAnnouncementsQueued(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechannouncementsqueued(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAnnouncementsQueued(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:).json new file mode 100644 index 0000000..3355615 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"speechSpellsOutCharacters"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechSpellsOutCharacters(_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.speechSpellsOutCharacters(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/speechspellsoutcharacters(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"platforms":[{"beta":false,"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"iOS"},{"unavailable":false,"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"title":"speechSpellsOutCharacters(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE25speechSpellsOutCharactersyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"speechSpellsOutCharacters"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","extendedModule":"SwiftUI"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechSpellsOutCharacters(_:)":{"title":"speechSpellsOutCharacters(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechspellsoutcharacters(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"speechSpellsOutCharacters"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechSpellsOutCharacters(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:).json new file mode 100644 index 0000000..61c5d51 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/springloadingbehavior(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/springLoadingBehavior(_:)"},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"springLoadingBehavior"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI21SpringLoadingBehaviorV","text":"SpringLoadingBehavior","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"springLoadingBehavior(_:)","platforms":[{"unavailable":false,"introducedAt":"17.0","deprecated":false,"beta":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"14.0","deprecated":false,"unavailable":false},{"introducedAt":"17.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"introducedAt":"10.0","beta":false,"name":"watchOS","unavailable":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE21springLoadingBehavioryQrAA06SpringeF0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","extendedModule":"SwiftUI"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.springLoadingBehavior(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"springLoadingBehavior"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"behavior","kind":"internalParam"},{"kind":"text","text":": "},{"text":"SpringLoadingBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21SpringLoadingBehaviorV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/springLoadingBehavior(_:)":{"title":"springLoadingBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/springloadingbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"springLoadingBehavior"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21SpringLoadingBehaviorV","text":"SpringLoadingBehavior"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/springLoadingBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:).json new file mode 100644 index 0000000..63bec98 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusBar"},{"kind":"text","text":"("},{"text":"hidden","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBar(hidden:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/statusbar(hidden:)"]}],"metadata":{"platforms":[{"beta":false,"introducedAt":"13.0","deprecated":false,"renamed":"statusBarHidden(_:)","unavailable":false,"name":"iOS","deprecatedAt":"100000.0"},{"introducedAt":"1.0","unavailable":false,"beta":false,"deprecated":false,"renamed":"statusBarHidden(_:)","deprecatedAt":"100000.0","name":"visionOS"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE9statusBar6hiddenQrSb_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"statusBar","kind":"identifier"},{"text":"(","kind":"text"},{"text":"hidden","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"statusBar(hidden:)"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.statusBar(hidden:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/statusBar(hidden:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusBar"},{"kind":"text","text":"("},{"text":"hidden","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"statusBar(hidden:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/statusbar(hidden:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBar(hidden:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:).json new file mode 100644 index 0000000..919a056 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.statusBarHidden(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/statusbarhidden(_:)"]}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"statusBarHidden(_:)","externalID":"s:7SwiftUI4ViewPAAE15statusBarHiddenyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"statusBarHidden","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS"}],"role":"symbol"},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBarHidden(_:)"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"statusBarHidden"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"hidden","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/statusBarHidden(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusBarHidden"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"statusBarHidden(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/statusbarhidden(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBarHidden(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:).json new file mode 100644 index 0000000..044c516 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:).json @@ -0,0 +1 @@ +{"kind":"symbol","metadata":{"title":"strikethrough(_:pattern:color:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"strikethrough","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV","text":"LineStyle","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Pattern","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV"},{"kind":"text","text":", "},{"text":"color","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Color","preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE13strikethrough_7pattern5colorQrSb_AA4TextV9LineStyleV7PatternVAA5ColorVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"13.0"},{"introducedAt":"16.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"9.0","name":"watchOS"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/strikethrough(_:pattern:color:)"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.strikethrough(_:pattern:color:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/strikethrough(_:pattern:color:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"strikethrough"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isActive"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true, "},{"kind":"externalParam","text":"pattern"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"LineStyle","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV"},{"kind":"text","text":"."},{"text":"Pattern","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV"},{"text":" = .solid, ","kind":"text"},{"text":"color","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color","kind":"typeIdentifier"},{"text":"? = nil) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/strikethrough(_:pattern:color:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"strikethrough"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV","kind":"typeIdentifier","text":"LineStyle"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","text":"Pattern"},{"kind":"text","text":", "},{"kind":"externalParam","text":"color"},{"text":": ","kind":"text"},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"strikethrough(_:pattern:color:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/strikethrough(_:pattern:color:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/strikethrough(_:pattern:color:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:).json new file mode 100644 index 0000000..b2de900 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/submitlabel(_:)"]}],"metadata":{"title":"submitLabel(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"submitLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11SubmitLabelV","text":"SubmitLabel"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE11submitLabelyQrAA06SubmitE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"beta":false,"deprecated":false,"introducedAt":"12.0","name":"macOS","unavailable":false},{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"name":"watchOS","deprecated":false,"introducedAt":"8.0","unavailable":false,"beta":false}],"roleHeading":"Instance Method","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitLabel(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"submitLabel"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"submitLabel"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11SubmitLabelV","text":"SubmitLabel"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}]}],"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.submitLabel(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/submitLabel(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/submitlabel(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitLabel(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"submitLabel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11SubmitLabelV","text":"SubmitLabel"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"submitLabel(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitscope(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitscope(_:).json new file mode 100644 index 0000000..e515c8c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/submitscope(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"submitScope","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","role":"symbol","platforms":[{"introducedAt":"15.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"12.0","unavailable":false},{"unavailable":false,"introducedAt":"15.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"8.0","beta":false,"deprecated":false,"name":"watchOS","unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE11submitScopeyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"submitScope(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"submitScope","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isBlocking"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitScope(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.submitScope(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/submitscope(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/submitScope(_:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitScope(_:)","type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/submitscope(_:)","title":"submitScope(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"submitScope"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:).json new file mode 100644 index 0000000..2c6fb55 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/swipeActions(edge:allowsFullSwipe:content:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"swipeActions"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"edge"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"kind":"text","text":" = .trailing, "},{"kind":"externalParam","text":"allowsFullSwipe"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true, "},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"text":" ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/swipeactions(edge:allowsfullswipe:content:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.swipeActions(edge:allowsFullSwipe:content:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE12swipeActions4edge15allowsFullSwipe7contentQrAA14HorizontalEdgeO_Sbqd__yXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"swipeActions(edge:allowsFullSwipe:content:)","role":"symbol","extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"swipeActions","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"text":", ","kind":"text"},{"text":"allowsFullSwipe","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/swipeActions(edge:allowsFullSwipe:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/swipeactions(edge:allowsfullswipe:content:)","title":"swipeActions(edge:allowsFullSwipe:content:)","abstract":[],"kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"swipeActions","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO","kind":"typeIdentifier","text":"HorizontalEdge"},{"kind":"text","text":", "},{"text":"allowsFullSwipe","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/swipeActions(edge:allowsFullSwipe:content:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:).json new file mode 100644 index 0000000..c82937c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:).json @@ -0,0 +1 @@ +{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:isactive:)"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolEffect"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"effect","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV","kind":"typeIdentifier","text":"SymbolEffectOptions"},{"kind":"text","text":" = .default, "},{"text":"isActive","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:7Symbols22IndefiniteSymbolEffectP","text":"IndefiniteSymbolEffect","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7Symbols12SymbolEffectP","text":"SymbolEffect","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.symbolEffect(_:options:isActive:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolEffect"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"options","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SymbolEffectOptions","kind":"typeIdentifier","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV"},{"kind":"text","text":", "},{"text":"isActive","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0"},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"14.0"},{"deprecated":false,"beta":false,"name":"tvOS","unavailable":false,"introducedAt":"17.0"},{"introducedAt":"10.0","deprecated":false,"unavailable":false,"name":"watchOS","beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","extendedModule":"SwiftUI","roleHeading":"Instance Method","title":"symbolEffect(_:options:isActive:)","externalID":"s:7SwiftUI4ViewPAAE12symbolEffect_7options8isActiveQrqd___7Symbols06SymbolE7OptionsVSbtAG010IndefinitejE0Rd__AG0jE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:isActive:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffect(_:options:isActive:)":{"role":"symbol","title":"symbolEffect(_:options:isActive:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:isactive:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:isActive:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolEffect","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SymbolEffectOptions","kind":"typeIdentifier","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV"},{"text":", ","kind":"text"},{"text":"isActive","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:).json new file mode 100644 index 0000000..8220fb2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolEffect","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"U"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"effect"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV","text":"SymbolEffectOptions"},{"kind":"text","text":" = .default, "},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"U"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7Symbols20DiscreteSymbolEffectP","text":"DiscreteSymbolEffect"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7Symbols12SymbolEffectP","text":"SymbolEffect","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"U","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.symbolEffect(_:options:value:)"},{"type":"text","text":"."}],"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE12symbolEffect_7options5valueQrqd___7Symbols06SymbolE7OptionsVqd_0_tAG08DiscreteiE0Rd__AG0iE0Rd__SQRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"symbolEffect(_:options:value:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolEffect","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"U"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV","text":"SymbolEffectOptions"},{"text":", ","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"U"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"17.0","beta":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"10.0","unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:value:)"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:value:)"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffect(_:options:value:)":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:value:)","title":"symbolEffect(_:options:value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolEffect"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"U","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"text":"SymbolEffectOptions","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"U","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:value:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:).json new file mode 100644 index 0000000..e7abf06 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffectsremoved(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffectsRemoved(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolEffectsRemoved"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isEnabled"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"17.0","name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}],"role":"symbol","title":"symbolEffectsRemoved(_:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"symbolEffectsRemoved"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"externalID":"s:7SwiftUI4ViewPAAE20symbolEffectsRemovedyQrSbF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.symbolEffectsRemoved(_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffectsRemoved(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffectsRemoved(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffectsremoved(_:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"symbolEffectsRemoved"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"symbolEffectsRemoved(_:)","type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:).json new file mode 100644 index 0000000..853a19f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.symbolRenderingMode(_:)"},{"type":"text","text":"."}],"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/symbolrenderingmode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolRenderingMode(_:)"},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"symbolRenderingMode"},{"kind":"text","text":"("},{"text":"SymbolRenderingMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19SymbolRenderingModeV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0"},{"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"symbolRenderingMode(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE19symbolRenderingModeyQrAA06SymboleF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolRenderingMode"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"mode"},{"kind":"text","text":": "},{"text":"SymbolRenderingMode","preciseIdentifier":"s:7SwiftUI19SymbolRenderingModeV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolRenderingMode(_:)":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symbolrenderingmode(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolRenderingMode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"SymbolRenderingMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19SymbolRenderingModeV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolRenderingMode(_:)","kind":"symbol","title":"symbolRenderingMode(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:).json new file mode 100644 index 0000000..b0f4700 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolVariant(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.symbolVariant(_:)"},{"type":"text","text":"."}],"metadata":{"platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"15.0"},{"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE13symbolVariantyQrAA14SymbolVariantsVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolVariant","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI14SymbolVariantsV","kind":"typeIdentifier","text":"SymbolVariants"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","title":"symbolVariant(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/symbolvariant(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolVariant","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"variant","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SymbolVariantsV","text":"SymbolVariants"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolVariant(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symbolvariant(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolVariant"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SymbolVariantsV","text":"SymbolVariants"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolVariant(_:)","kind":"symbol","title":"symbolVariant(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabitem(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabitem(_:).json new file mode 100644 index 0000000..716f8d9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabitem(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.tabItem(_:)"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tabItem","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"attribute","text":"@"},{"text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","kind":"attribute"},{"kind":"text","text":" "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"label","kind":"internalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":" : ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tabitem(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabItem(_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE7tabItemyQrqd__yXEAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"13.0","unavailable":false},{"name":"macOS","beta":false,"introducedAt":"10.15","deprecated":false,"unavailable":false},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"7.0"}],"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"tabItem(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tabItem"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tabItem(_:)":{"title":"tabItem(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tabitem(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"tabItem"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(() -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabItem(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:).json new file mode 100644 index 0000000..521030b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE18tableColumnHeadersyQrAA10VisibilityOF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tableColumnHeaders"},{"kind":"text","text":"("},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"symbolKind":"method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"14.0","deprecated":false}],"title":"tableColumnHeaders(_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tableColumnHeaders","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"visibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tablecolumnheaders(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableColumnHeaders(_:)"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.tableColumnHeaders(_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tableColumnHeaders(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"tableColumnHeaders","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tablecolumnheaders(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableColumnHeaders(_:)","title":"tableColumnHeaders(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:).json new file mode 100644 index 0000000..925687e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tablestyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.tableStyle(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"tableStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"TableStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10TableStyleP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"metadata":{"extendedModule":"SwiftUI","platforms":[{"introducedAt":"16.0","name":"iOS","beta":false,"deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE10tableStyleyQrqd__AA05TableE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"tableStyle(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tableStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableStyle(_:)","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tableStyle(_:)":{"title":"tableStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tablestyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tableStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:).json new file mode 100644 index 0000000..d98c5c7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabViewStyle(_:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE03tabC5StyleyQrqd__AA03TabcE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"introducedAt":"14.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"introducedAt":"11.0","deprecated":false,"beta":false,"unavailable":false,"name":"macOS"},{"beta":false,"name":"tvOS","introducedAt":"14.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"introducedAt":"7.0","name":"watchOS","beta":false}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tabViewStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","title":"tabViewStyle(_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tabViewStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12TabViewStyleP","text":"TabViewStyle"},{"text":"\n","kind":"text"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tabviewstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.tabViewStyle(_:)"},{"text":".","type":"text"}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tabViewStyle(_:)":{"title":"tabViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tabviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tabViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tag(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tag(_:).json new file mode 100644 index 0000000..25ffb07 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tag(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"tag"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SH","text":"Hashable"},{"text":"\n","kind":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tag(_:)"},"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tag","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE3tagyQrqd__SHRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"tag(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","role":"symbol","platforms":[{"introducedAt":"13.0","beta":false,"name":"iOS","deprecated":false,"unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"10.15","unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"6.0"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.tag(_:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tag(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tag(_:)":{"title":"tag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tag(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tag(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:).json new file mode 100644 index 0000000..6dbb497 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:).json @@ -0,0 +1 @@ +{"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.task(id:priority:_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(id:priority:_:)"},"metadata":{"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE4task2id8priority_Qrqd___ScPyyYaYbctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"name":"macOS","beta":false},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"15.0","unavailable":false},{"introducedAt":"8.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"title":"task(id:priority:_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"priority"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"TaskPriority","preciseIdentifier":"s:ScP"},{"kind":"text","text":", () "},{"kind":"keyword","text":"async"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/task(id:priority:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"id"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"priority"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"text":" = .userInitiated, ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"action","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" () "},{"kind":"keyword","text":"async"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/task(id:priority:_:)":{"title":"task(id:priority:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/task(id:priority:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"text":", () ","kind":"text"},{"kind":"keyword","text":"async"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(id:priority:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(priority:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(priority:_:).json new file mode 100644 index 0000000..8c1773f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/task(priority:_:).json @@ -0,0 +1 @@ +{"metadata":{"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"text":"(","kind":"text"},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"text":", () ","kind":"text"},{"kind":"keyword","text":"async"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"task(priority:_:)","platforms":[{"unavailable":false,"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS"},{"deprecated":false,"name":"macOS","introducedAt":"12.0","unavailable":false,"beta":false},{"deprecated":false,"name":"tvOS","introducedAt":"15.0","unavailable":false,"beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"8.0","beta":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE4task8priority_QrScP_yyYaYbctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.task(priority:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(priority:_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/task(priority:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"task"},{"text":"(","kind":"text"},{"text":"priority","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ScP","text":"TaskPriority"},{"kind":"text","text":" = .userInitiated, "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"action"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"text":" () ","kind":"text"},{"text":"async","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/task(priority:_:)":{"title":"task(priority:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/task(priority:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"kind":"text","text":"("},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"kind":"text","text":", () "},{"text":"async","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(priority:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcase(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcase(_:).json new file mode 100644 index 0000000..d297e4d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcase(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"textCase","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"textCase"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Case","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV4CaseO"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textCase(_:)"},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"textCase(_:)","externalID":"s:7SwiftUI4ViewPAAE8textCaseyQrAA4TextV0E0OSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"textCase","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Case","preciseIdentifier":"s:7SwiftUI4TextV4CaseO"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"unavailable":false,"introducedAt":"14.0","name":"iOS","beta":false,"deprecated":false},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"11.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"tvOS"},{"beta":false,"introducedAt":"7.0","unavailable":false,"name":"watchOS","deprecated":false}],"role":"symbol"},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textcase(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.textCase(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textCase(_:)":{"title":"textCase(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textcase(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textCase"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":".","kind":"text"},{"text":"Case","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV4CaseO"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textCase(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:).json new file mode 100644 index 0000000..f5e5b3d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textcontenttype(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textContentType(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.textContentType(_:)"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE15textContentTypeyQrSo06UITexteF0aSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"textContentType","kind":"identifier"},{"kind":"text","text":"("},{"text":"UITextContentType","kind":"typeIdentifier","preciseIdentifier":"c:@T@UITextContentType"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"name":"iOS","beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"13.0","beta":false,"deprecated":false}],"roleHeading":"Instance Method","title":"textContentType(_:)","extendedModule":"SwiftUI"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textContentType"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"textContentType"},{"kind":"text","text":": "},{"preciseIdentifier":"c:@T@UITextContentType","text":"UITextContentType","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textContentType(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"textContentType","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@T@UITextContentType","text":"UITextContentType","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"textContentType(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textcontenttype(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textContentType(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:).json new file mode 100644 index 0000000..6adba08 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:).json @@ -0,0 +1 @@ +{"metadata":{"platforms":[{"beta":false,"deprecated":false,"introducedAt":"17.0","name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"14.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"1.0","beta":false,"deprecated":false,"name":"visionOS","unavailable":false}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textEditorStyle"},{"kind":"text","text":"(some "},{"text":"TextEditorStyle","preciseIdentifier":"s:7SwiftUI15TextEditorStyleP","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","extendedModule":"SwiftUI","title":"textEditorStyle(_:)","externalID":"s:7SwiftUI4ViewPAAE15textEditorStyleyQrqd__AA04TexteF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"textEditorStyle","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"kind":"text","text":": some "},{"text":"TextEditorStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15TextEditorStyleP"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/texteditorstyle(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textEditorStyle(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.textEditorStyle(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textEditorStyle(_:)":{"title":"textEditorStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/texteditorstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"textEditorStyle","kind":"identifier"},{"text":"(some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15TextEditorStyleP","text":"TextEditorStyle","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textEditorStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:).json new file mode 100644 index 0000000..fc54d2f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"textFieldStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","platforms":[{"unavailable":false,"name":"iOS","introducedAt":"13.0","beta":false,"deprecated":false},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"name":"macOS","beta":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"textFieldStyle(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE14textFieldStyleyQrqd__AA04TexteF0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textFieldStyle(_:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.textFieldStyle(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textfieldstyle(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"textFieldStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"TextFieldStyle","preciseIdentifier":"s:7SwiftUI14TextFieldStyleP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textFieldStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textfieldstyle(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textFieldStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textFieldStyle(_:)","kind":"symbol","title":"textFieldStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:).json new file mode 100644 index 0000000..caeece7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.textInputAutocapitalization(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textinputautocapitalization(_:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE27textInputAutocapitalizationyQrAA04TexteF0VSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textInputAutocapitalization"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI27TextInputAutocapitalizationV","text":"TextInputAutocapitalization"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"beta":false,"unavailable":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false}],"title":"textInputAutocapitalization(_:)","extendedModule":"SwiftUI"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textInputAutocapitalization(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textInputAutocapitalization"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"autocapitalization","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"TextInputAutocapitalization","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI27TextInputAutocapitalizationV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textInputAutocapitalization(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textinputautocapitalization(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textInputAutocapitalization(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textInputAutocapitalization"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI27TextInputAutocapitalizationV","text":"TextInputAutocapitalization"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"textInputAutocapitalization(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:).json new file mode 100644 index 0000000..c0a8c79 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"17.0","name":"iOS","deprecated":false,"beta":false},{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","deprecated":false,"introducedAt":"17.0","beta":false,"unavailable":false},{"introducedAt":"10.0","beta":false,"name":"watchOS","deprecated":false,"unavailable":false}],"externalID":"s:7SwiftUI4ViewPAAE9textScale_9isEnabledQrAA4TextV0E0V_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"textScale(_:isEnabled:)","extendedModule":"SwiftUI","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"textScale"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":".","kind":"text"},{"text":"Scale","preciseIdentifier":"s:7SwiftUI4TextV5ScaleV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textScale(_:isEnabled:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.textScale(_:isEnabled:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textScale"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"scale"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Scale","preciseIdentifier":"s:7SwiftUI4TextV5ScaleV"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textscale(_:isenabled:)"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textScale(_:isEnabled:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textScale"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"."},{"text":"Scale","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV5ScaleV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"textScale(_:isEnabled:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textscale(_:isenabled:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textScale(_:isEnabled:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textselection(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textselection(_:).json new file mode 100644 index 0000000..a452c35 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/textselection(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textSelection(_:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textSelection"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"selectability","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17TextSelectabilityP","text":"TextSelectability"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/textselection(_:)"]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE13textSelectionyQrqd__AA17TextSelectabilityRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textSelection"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"symbolKind":"method","platforms":[{"name":"iOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"12.0","deprecated":false}],"title":"textSelection(_:)"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.textSelection(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textSelection(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"textSelection","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textselection(_:)","kind":"symbol","title":"textSelection(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textSelection(_:)","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev.json new file mode 100644 index 0000000..de0975a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev.json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-5usev","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","metadata":{"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE4tintyQrAA5ColorVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false},{"introducedAt":"12.0","name":"macOS","deprecated":false,"beta":false,"unavailable":false},{"unavailable":false,"introducedAt":"15.0","beta":false,"name":"tvOS","deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"tint","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"tint(_:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"tint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"tint"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.tint(_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-5usev"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tint(_:)-5usev":{"title":"tint(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-5usev","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tint","kind":"identifier"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-5usev","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh.json new file mode 100644 index 0000000..f8e8196 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-68ihh"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-68ihh"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.tint(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE4tintyQrqd__SgAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","extendedModule":"SwiftUI","platforms":[{"name":"iOS","beta":false,"introducedAt":"16.0","deprecated":false,"unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"13.0"},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0"},{"beta":false,"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"9.0"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tint"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"symbolKind":"method","title":"tint(_:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tint"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"tint"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ShapeStyle","preciseIdentifier":"s:7SwiftUI10ShapeStyleP"},{"text":"\n","kind":"text"}]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tint(_:)-68ihh":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-68ihh","kind":"symbol","title":"tint(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-68ihh","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"tint"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:).json new file mode 100644 index 0000000..9b32304 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/togglestyle(_:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toggleStyle(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"toggleStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"text":"ToggleStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ToggleStyleP"},{"text":"\n","kind":"text"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"name":"macOS","beta":false,"unavailable":false,"introducedAt":"10.15","deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"6.0"}],"role":"symbol","title":"toggleStyle(_:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toggleStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"externalID":"s:7SwiftUI4ViewPAAE11toggleStyleyQrqd__AA06ToggleE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toggleStyle(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toggleStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"toggleStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"toggleStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/togglestyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toggleStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:).json new file mode 100644 index 0000000..27a86ba --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:).json @@ -0,0 +1 @@ +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbar(_:for:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(_:for:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"extendedModule":"SwiftUI","title":"toolbar(_:for:)","externalID":"s:7SwiftUI4ViewPAAE7toolbar_3forQrAA10VisibilityO_AA16ToolbarPlacementVdtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"unavailable":false,"introducedAt":"16.0","deprecated":false,"beta":false,"name":"iOS"},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"name":"macOS","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"name":"tvOS","introducedAt":"16.0"},{"unavailable":false,"deprecated":false,"introducedAt":"9.0","name":"watchOS","beta":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"text":"ToolbarPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(_:for:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"visibility","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"bars","kind":"internalParam"},{"kind":"text","text":": "},{"text":"ToolbarPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"text":"...) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(_:for:)":{"title":"toolbar(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"ToolbarPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"text":"...) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29.json new file mode 100644 index 0000000..5f80871 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29.json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"View.toolbar(content:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-7wl29"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"attribute","text":"@"},{"preciseIdentifier":"s:7SwiftUI21ToolbarContentBuilderV","kind":"attribute","text":"ToolbarContentBuilder"},{"text":" ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ToolbarContent","preciseIdentifier":"s:7SwiftUI14ToolbarContentP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"14.0","unavailable":false},{"beta":false,"name":"macOS","introducedAt":"11.0","deprecated":false,"unavailable":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0","name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"7.0","name":"watchOS"}],"roleHeading":"Instance Method","role":"symbol","extendedModule":"SwiftUI","title":"toolbar(content:)","externalID":"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAA14ToolbarContentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"toolbar"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-7wl29","interfaceLanguage":"swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(content:)-7wl29":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"toolbar(content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-7wl29","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-7wl29"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc.json new file mode 100644 index 0000000..ff2e298 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.toolbar(content:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"attribute","text":"@"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":" : "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-9r9cc","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"title":"toolbar(content:)","symbolKind":"method","roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"14.0","name":"iOS","beta":false},{"introducedAt":"11.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"14.0","beta":false},{"name":"watchOS","beta":false,"introducedAt":"7.0","deprecated":false,"unavailable":false}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE7toolbar7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-9r9cc"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(content:)-9r9cc":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-9r9cc","title":"toolbar(content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-9r9cc","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:).json new file mode 100644 index 0000000..c22385b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:).json @@ -0,0 +1 @@ +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE7toolbar2id7contentQrSS_qd__yXEtAA26CustomizableToolbarContentRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","unavailable":false,"introducedAt":"14.0","deprecated":false,"beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"11.0","beta":false,"name":"macOS"},{"introducedAt":"14.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"unavailable":false,"introducedAt":"7.0","deprecated":false,"beta":false,"name":"watchOS"}],"symbolKind":"method","roleHeading":"Instance Method","title":"toolbar(id:content:)","extendedModule":"SwiftUI"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbar(id:content:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ToolbarContentBuilder","preciseIdentifier":"s:7SwiftUI21ToolbarContentBuilderV"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26CustomizableToolbarContentP","text":"CustomizableToolbarContent"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(id:content:)"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(id:content:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(id:content:)":{"title":"toolbar(id:content:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(id:content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(id:content:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:).json new file mode 100644 index 0000000..178acb2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:).json @@ -0,0 +1 @@ +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.toolbar(removing:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(removing:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"text":"(","kind":"text"},{"text":"removing","kind":"externalParam"},{"kind":"text","text":" "},{"text":"defaultItemKind","kind":"internalParam"},{"kind":"text","text":": "},{"text":"ToolbarDefaultItemKind","preciseIdentifier":"s:7SwiftUI22ToolbarDefaultItemKindV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(removing:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"toolbar(removing:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"("},{"text":"removing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ToolbarDefaultItemKindV","text":"ToolbarDefaultItemKind"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"extendedModule":"SwiftUI","role":"symbol","platforms":[{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"17.0","name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"tvOS"},{"beta":false,"introducedAt":"10.0","unavailable":false,"name":"watchOS","deprecated":false}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE7toolbar8removingQrAA22ToolbarDefaultItemKindVSg_tF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(removing:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"text":"(","kind":"text"},{"text":"removing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ToolbarDefaultItemKindV","text":"ToolbarDefaultItemKind"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"toolbar(removing:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(removing:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(removing:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv.json new file mode 100644 index 0000000..80deedc --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-318bv"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbarBackground(_:for:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarBackground"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"visibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"bars"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement","kind":"typeIdentifier"},{"text":"...) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-318bv"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"extendedModule":"SwiftUI","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement","kind":"typeIdentifier"},{"kind":"text","text":"...) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"name":"macOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0"},{"introducedAt":"16.0","name":"tvOS","deprecated":false,"beta":false,"unavailable":false},{"unavailable":false,"introducedAt":"9.0","name":"watchOS","beta":false,"deprecated":false}],"role":"symbol","externalID":"s:7SwiftUI4ViewPAAE17toolbarBackground_3forQrAA10VisibilityO_AA16ToolbarPlacementVdtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"toolbarBackground(_:for:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarBackground(_:for:)-318bv":{"abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-318bv","kind":"symbol","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-318bv","title":"toolbarBackground(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty.json new file mode 100644 index 0000000..c7c9bc0 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-3faty"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE17toolbarBackground_3forQrqd___AA16ToolbarPlacementVdtAA10ShapeStyleRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbarBackground","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ToolbarPlacement","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"platforms":[{"name":"iOS","beta":false,"introducedAt":"16.0","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"13.0","name":"macOS"},{"name":"tvOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"16.0"},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"9.0"}],"title":"toolbarBackground(_:for:)","extendedModule":"SwiftUI"},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-3faty"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.toolbarBackground(_:for:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"style"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"bars"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"ShapeStyle","preciseIdentifier":"s:7SwiftUI10ShapeStyleP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarBackground(_:for:)-3faty":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","kind":"typeIdentifier","text":"ToolbarPlacement"},{"text":"...) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-3faty","kind":"symbol","title":"toolbarBackground(_:for:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-3faty","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:).json new file mode 100644 index 0000000..88e4e82 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:).json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarColorScheme(_:for:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"toolbarColorScheme(_:for:)","externalID":"s:7SwiftUI4ViewPAAE18toolbarColorScheme_3forQrAA0eF0OSg_AA16ToolbarPlacementVdtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbarColorScheme","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI11ColorSchemeO","text":"ColorScheme","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ToolbarPlacement","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","kind":"typeIdentifier"},{"kind":"text","text":"...) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"introducedAt":"16.0","unavailable":false,"deprecated":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"16.0","unavailable":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"9.0","beta":false}],"role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.toolbarColorScheme(_:for:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarcolorscheme(_:for:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarColorScheme"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"colorScheme"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ColorSchemeO","kind":"typeIdentifier","text":"ColorScheme"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"for"},{"kind":"text","text":" "},{"kind":"internalParam","text":"bars"},{"text":": ","kind":"text"},{"text":"ToolbarPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarColorScheme(_:for:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"toolbarColorScheme"},{"kind":"text","text":"("},{"text":"ColorScheme","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"text":"?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement"},{"text":"...) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"toolbarColorScheme(_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarcolorscheme(_:for:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarColorScheme(_:for:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:).json new file mode 100644 index 0000000..5cf14c1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:).json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbarRole","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ToolbarRoleV","text":"ToolbarRole"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"externalID":"s:7SwiftUI4ViewPAAE11toolbarRoleyQrAA07ToolbarE0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","extendedModule":"SwiftUI","title":"toolbarRole(_:)","roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","platforms":[{"name":"iOS","beta":false,"introducedAt":"16.0","unavailable":false,"deprecated":false},{"name":"macOS","unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false},{"introducedAt":"16.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"unavailable":false,"name":"watchOS","beta":false,"introducedAt":"9.0","deprecated":false}],"symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbarRole(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarRole(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarrole(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarRole"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"role"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI11ToolbarRoleV","kind":"typeIdentifier","text":"ToolbarRole"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarRole(_:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarRole(_:)","kind":"symbol","title":"toolbarRole(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"toolbarRole"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI11ToolbarRoleV","text":"ToolbarRole","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarrole(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:).json new file mode 100644 index 0000000..a65964a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:).json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarTitleDisplayMode"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"mode"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23ToolbarTitleDisplayModeV","kind":"typeIdentifier","text":"ToolbarTitleDisplayMode"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleDisplayMode(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbarTitleDisplayMode(_:)"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"deprecated":false,"name":"macOS","introducedAt":"14.0","unavailable":false,"beta":false},{"unavailable":false,"beta":false,"introducedAt":"17.0","deprecated":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"10.0","deprecated":false,"unavailable":false}],"role":"symbol","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarTitleDisplayMode"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23ToolbarTitleDisplayModeV","text":"ToolbarTitleDisplayMode","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE23toolbarTitleDisplayModeyQrAA07ToolbarefG0VF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","title":"toolbarTitleDisplayMode(_:)","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitledisplaymode(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarTitleDisplayMode(_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbarTitleDisplayMode","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"ToolbarTitleDisplayMode","preciseIdentifier":"s:7SwiftUI23ToolbarTitleDisplayModeV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitledisplaymode(_:)","kind":"symbol","title":"toolbarTitleDisplayMode(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleDisplayMode(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:).json new file mode 100644 index 0000000..773d1f9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarTitleMenu"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","preciseIdentifier":"s:7SwiftUI11ViewBuilderV","text":"ViewBuilder"},{"kind":"text","text":" "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitlemenu(content:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.toolbarTitleMenu(content:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleMenu(content:)"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbarTitleMenu"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"toolbarTitleMenu(content:)","role":"symbol","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE16toolbarTitleMenu7contentQrqd__yXE_tAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"16.0","name":"iOS","unavailable":false,"beta":false,"deprecated":false},{"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"introducedAt":"16.0","beta":false,"name":"tvOS","unavailable":false,"deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"9.0","beta":false,"name":"watchOS"}],"symbolKind":"method","extendedModule":"SwiftUI","roleHeading":"Instance Method"},"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarTitleMenu(content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"toolbarTitleMenu","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"toolbarTitleMenu(content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitlemenu(content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleMenu(content:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tracking(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tracking(_:).json new file mode 100644 index 0000000..91efabd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/tracking(_:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"tracking","kind":"identifier"},{"kind":"text","text":"("},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","platforms":[{"unavailable":false,"name":"iOS","deprecated":false,"beta":false,"introducedAt":"16.0"},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"16.0","deprecated":false},{"name":"watchOS","beta":false,"introducedAt":"9.0","deprecated":false,"unavailable":false}],"roleHeading":"Instance Method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"title":"tracking(_:)","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE8trackingyQr14CoreFoundation7CGFloatVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.tracking(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/tracking(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tracking(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tracking"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"tracking"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tracking(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tracking(_:)","kind":"symbol","title":"tracking(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"tracking","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tracking(_:)","type":"topic","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations","kind":"article","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","role":"collectionGroup","title":"View Implementations","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:).json new file mode 100644 index 0000000..d5973a6 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:).json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:)"},"metadata":{"extendedModule":"SwiftUI","platforms":[{"name":"iOS","introducedAt":"13.0","beta":false,"deprecated":false,"unavailable":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.15"},{"introducedAt":"13.0","name":"tvOS","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"6.0","name":"watchOS"}],"role":"symbol","symbolKind":"method","title":"transaction(_:)","externalID":"s:7SwiftUI4ViewPAAE11transactionyQryAA11TransactionVzcF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"transaction","kind":"identifier"},{"kind":"text","text":"(("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.transaction(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"transaction"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transaction","kind":"identifier"},{"text":"((","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"transaction(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:).json new file mode 100644 index 0000000..6b514ef --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE11transaction_4bodyQryAA11TransactionVzc_qd__AA018PlaceholderContentC0VyxGXEtAaBRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"transaction(_:body:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"transaction"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"body","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"platforms":[{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"unavailable":false,"introducedAt":"14.0","name":"macOS","deprecated":false,"beta":false},{"introducedAt":"17.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"name":"watchOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"10.0"}],"role":"symbol","extendedModule":"SwiftUI"},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:body:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:body:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.transaction(_:body:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transaction"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"transform"},{"text":": ","kind":"text"},{"kind":"keyword","text":"@escaping"},{"kind":"text","text":" ("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI11TransactionV","text":"Transaction","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"text":"@","kind":"attribute"},{"kind":"attribute","text":"ViewBuilder","preciseIdentifier":"s:7SwiftUI11ViewBuilderV"},{"kind":"text","text":" "},{"text":"body","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(_:body:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:body:)","type":"topic","title":"transaction(_:body:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transaction","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"body","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:body:)","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:).json new file mode 100644 index 0000000..6f97a68 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:).json @@ -0,0 +1 @@ +{"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(value:_:)","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(value:_:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.transaction(value:_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transaction"},{"text":"(","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": some ","kind":"text"},{"text":"Equatable","preciseIdentifier":"s:SQ","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"transform"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11TransactionV","text":"Transaction"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"transaction","kind":"identifier"},{"kind":"text","text":"("},{"text":"value","kind":"externalParam"},{"kind":"text","text":": some "},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"extendedModule":"SwiftUI","symbolKind":"method","platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"beta":false,"introducedAt":"17.0"},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"17.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"introducedAt":"10.0","name":"watchOS","deprecated":false,"beta":false,"unavailable":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"transaction(value:_:)","role":"symbol","externalID":"s:7SwiftUI4ViewPAAE11transaction5value_Qrqd___yAA11TransactionVzctSQRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(value:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"transaction","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"kind":"text","text":", ("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Transaction","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"transaction(value:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(value:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(value:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:).json new file mode 100644 index 0000000..23fb36f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:).json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","role":"symbol","platforms":[{"beta":false,"deprecated":false,"introducedAt":"13.0","name":"iOS","unavailable":false},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"unavailable":false,"introducedAt":"13.0","name":"tvOS","deprecated":false,"beta":false},{"introducedAt":"6.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"externalID":"s:7SwiftUI4ViewPAAE25transformAnchorPreference3key5value0D0Qrqd_0_m_AA0E0V6SourceVyqd___Gy5ValueQyd_0_z_AIyqd__GtctAA0F3KeyRd_0_r0_lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"transformAnchorPreference(key:value:transform:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"transformAnchorPreference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"K"},{"kind":"text","text":">("},{"kind":"externalParam","text":"key"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV","text":"Anchor"},{"kind":"text","text":"<"},{"text":"A","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV","text":"Source","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"transform"},{"text":": (","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":", ","kind":"text"},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"kind":"text","text":"<"},{"text":"A","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformAnchorPreference(key:value:transform:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.transformAnchorPreference(key:value:transform:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transformAnchorPreference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"text":"key","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"_"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type = K.self, "},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI6AnchorV","text":"Anchor","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Source","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV"},{"text":", ","kind":"text"},{"text":"transform","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI6AnchorV","text":"Anchor","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"A"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"PreferenceKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13PreferenceKeyP"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transformanchorpreference(key:value:transform:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","kind":"symbol","title":"PlaybackSDK","url":"\/documentation\/playbacksdk","role":"collection","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformAnchorPreference(key:value:transform:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformAnchorPreference(key:value:transform:)","abstract":[],"type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformAnchorPreference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"K"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":">."},{"text":"Source","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"transform"},{"kind":"text","text":": ("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI6AnchorV","kind":"typeIdentifier","text":"Anchor"},{"text":"<","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformanchorpreference(key:value:transform:)","title":"transformAnchorPreference(key:value:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:).json new file mode 100644 index 0000000..598d40b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"externalID":"s:7SwiftUI4ViewPAAE15transformEffectyQrSo17CGAffineTransformVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","role":"symbol","roleHeading":"Instance Method","platforms":[{"beta":false,"introducedAt":"13.0","name":"iOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"10.15","unavailable":false,"name":"macOS","beta":false},{"unavailable":false,"introducedAt":"13.0","beta":false,"deprecated":false,"name":"tvOS"},{"deprecated":false,"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0"}],"title":"transformEffect(_:)","extendedModule":"SwiftUI","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"transformEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGAffineTransform","text":"CGAffineTransform"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEffect(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transformeffect(_:)"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"transformEffect","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"CGAffineTransform","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGAffineTransform"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.transformEffect(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformEffect(_:)":{"title":"transformEffect(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformeffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformEffect"},{"kind":"text","text":"("},{"text":"CGAffineTransform","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGAffineTransform"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEffect(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:).json new file mode 100644 index 0000000..a465047 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:).json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"transformEnvironment(_:transform:)","externalID":"s:7SwiftUI4ViewPAAE20transformEnvironment_0D0Qrs15WritableKeyPathCyAA0E6ValuesVqd__G_yqd__zctlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"transformEnvironment"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV","kind":"typeIdentifier","text":"EnvironmentValues"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":">, "},{"text":"transform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"extendedModule":"SwiftUI","roleHeading":"Instance Method","symbolKind":"method","platforms":[{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"iOS"},{"beta":false,"introducedAt":"10.15","unavailable":false,"name":"macOS","deprecated":false},{"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"6.0"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"transformEnvironment","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"keyPath","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV","text":"EnvironmentValues"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"transform","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.transformEnvironment(_:transform:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEnvironment(_:transform:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transformenvironment(_:transform:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformEnvironment(_:transform:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transformEnvironment","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV","text":"EnvironmentValues","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"transform"},{"kind":"text","text":": ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"transformEnvironment(_:transform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformenvironment(_:transform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEnvironment(_:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:).json new file mode 100644 index 0000000..85ff8b4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:).json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transformpreference(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"transformPreference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"key","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type = K.self, "},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"callback","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:7SwiftUI13PreferenceKeyP","kind":"typeIdentifier","text":"PreferenceKey"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformPreference(_:_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.transformPreference(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"symbolKind":"method","extendedModule":"SwiftUI","title":"transformPreference(_:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"transformPreference","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"K"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"K"},{"text":".Type, (","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"10.15","name":"macOS","deprecated":false},{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"6.0","name":"watchOS","beta":false,"deprecated":false}],"externalID":"s:7SwiftUI4ViewPAAE19transformPreferenceyQrqd__m_y5ValueQyd__zctAA0E3KeyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformPreference(_:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformPreference"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"transformPreference(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformpreference(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformPreference(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transition(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transition(_:).json new file mode 100644 index 0000000..a9b2d21 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/transition(_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/transition(_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE10transitionyQrAA13AnyTransitionVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","extendedModule":"SwiftUI","title":"transition(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"transition","kind":"identifier"},{"kind":"text","text":"("},{"text":"AnyTransition","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13AnyTransitionV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"10.15","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"6.0","unavailable":false}],"role":"symbol"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transition(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"transition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"t"},{"kind":"text","text":": "},{"text":"AnyTransition","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13AnyTransitionV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"platforms":["iOS"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.transition(_:)"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transition(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"transition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13AnyTransitionV","text":"AnyTransition"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"transition(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transition(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transition(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:).json new file mode 100644 index 0000000..818dc7d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:).json @@ -0,0 +1 @@ +{"sections":[],"metadata":{"platforms":[{"name":"iOS","beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15"},{"deprecated":false,"beta":false,"unavailable":false,"introducedAt":"13.0","name":"tvOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"6.0"}],"roleHeading":"Instance Method","externalID":"s:7SwiftUI4ViewPAAE14truncationModeyQrAA4TextV010TruncationE0OF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","title":"truncationMode(_:)","role":"symbol","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"truncationMode"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"TruncationMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV14TruncationModeO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"extendedModule":"SwiftUI"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"truncationMode","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"mode","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"TruncationMode","preciseIdentifier":"s:7SwiftUI4TextV14TruncationModeO"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/truncationmode(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/truncationMode(_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.truncationMode(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/truncationMode(_:)":{"title":"truncationMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/truncationmode(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"truncationMode","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV14TruncationModeO","kind":"typeIdentifier","text":"TruncationMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/truncationMode(_:)","kind":"symbol","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx.json new file mode 100644 index 0000000..efa81ca --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx.json @@ -0,0 +1 @@ +{"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"View.typeSelectEquivalent(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-3rtbx"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-3rtbx"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"typeSelectEquivalent","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"stringKey","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}]}],"kind":"declarations"}],"metadata":{"extendedModule":"SwiftUI","role":"symbol","roleHeading":"Instance Method","title":"typeSelectEquivalent(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE20typeSelectEquivalentyQrAA18LocalizedStringKeyVF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"16.0","name":"iOS"},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"16.0"},{"name":"watchOS","beta":false,"introducedAt":"9.0","unavailable":false,"deprecated":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"typeSelectEquivalent","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-3rtbx":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-3rtbx","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-3rtbx","title":"typeSelectEquivalent(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeSelectEquivalent"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq.json new file mode 100644 index 0000000..8b06e47 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq.json @@ -0,0 +1 @@ +{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-58dqq"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-58dqq"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.typeSelectEquivalent(_:)"},{"text":".","type":"text"}],"metadata":{"extendedModule":"SwiftUI","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"platforms":[{"name":"iOS","introducedAt":"16.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false},{"unavailable":false,"introducedAt":"16.0","name":"tvOS","deprecated":false,"beta":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"9.0"}],"externalID":"s:7SwiftUI4ViewPAAE20typeSelectEquivalentyQrAA4TextVSgF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","roleHeading":"Instance Method","title":"typeSelectEquivalent(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typeSelectEquivalent"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"typeSelectEquivalent","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"text"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"kind":"text","text":"\n"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-58dqq":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typeSelectEquivalent"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"typeSelectEquivalent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-58dqq","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-58dqq"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2.json new file mode 100644 index 0000000..94abc7b --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2.json @@ -0,0 +1 @@ +{"metadata":{"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE20typeSelectEquivalentyQrqd__SyRd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"role":"symbol","platforms":[{"deprecated":false,"introducedAt":"16.0","beta":false,"unavailable":false,"name":"iOS"},{"beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false,"name":"macOS"},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0"},{"beta":false,"name":"watchOS","deprecated":false,"introducedAt":"9.0","unavailable":false}],"roleHeading":"Instance Method","title":"typeSelectEquivalent(_:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"typeSelectEquivalent","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-xox2"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"typeSelectEquivalent","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"string","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-xox2","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.typeSelectEquivalent(_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-xox2":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeSelectEquivalent"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"typeSelectEquivalent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-xox2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-xox2"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k.json new file mode 100644 index 0000000..0e8083d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"typesettingLanguage","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"language"},{"text":": ","kind":"text"},{"text":"TypesettingLanguage","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19TypesettingLanguageV"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-4ax4k","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.typesettingLanguage(_:isEnabled:)"},{"text":".","type":"text"}],"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"title":"typesettingLanguage(_:isEnabled:)","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"17.0","beta":false,"unavailable":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"14.0","name":"macOS"},{"introducedAt":"17.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"10.0","name":"watchOS"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typesettingLanguage"},{"text":"(","kind":"text"},{"text":"TypesettingLanguage","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19TypesettingLanguageV"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE19typesettingLanguage_9isEnabledQrAA011TypesettingE0V_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method"},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-4ax4k"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typesettingLanguage(_:isEnabled:)-4ax4k":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-4ax4k","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-4ax4k","role":"symbol","title":"typesettingLanguage(_:isEnabled:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"typesettingLanguage","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI19TypesettingLanguageV","kind":"typeIdentifier","text":"TypesettingLanguage"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f.json new file mode 100644 index 0000000..c28cf56 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.typesettingLanguage(_:isEnabled:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"typesettingLanguage","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"language","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Locale","preciseIdentifier":"s:10Foundation6LocaleV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Language","preciseIdentifier":"s:10Foundation6LocaleV8LanguageV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":"\n"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-70p7f"]}],"metadata":{"externalID":"s:7SwiftUI4ViewPAAE19typesettingLanguage_9isEnabledQr10Foundation6LocaleV0E0V_SbtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"17.0","name":"iOS"},{"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"14.0","beta":false},{"unavailable":false,"introducedAt":"17.0","name":"tvOS","beta":false,"deprecated":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"10.0","beta":false}],"roleHeading":"Instance Method","extendedModule":"SwiftUI","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typesettingLanguage"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation6LocaleV","text":"Locale","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation6LocaleV8LanguageV","text":"Language","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol","title":"typesettingLanguage(_:isEnabled:)","symbolKind":"method"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-70p7f","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typesettingLanguage(_:isEnabled:)-70p7f":{"type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typesettingLanguage"},{"text":"(","kind":"text"},{"text":"Locale","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation6LocaleV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation6LocaleV8LanguageV","text":"Language"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-70p7f","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-70p7f","title":"typesettingLanguage(_:isEnabled:)","kind":"symbol","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:).json new file mode 100644 index 0000000..6952343 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","extendedModule":"SwiftUI","platforms":[{"introducedAt":"16.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"13.0"},{"introducedAt":"16.0","deprecated":false,"beta":false,"unavailable":false,"name":"tvOS"},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"9.0"}],"title":"underline(_:pattern:color:)","externalID":"s:7SwiftUI4ViewPAAE9underline_7pattern5colorQrSb_AA4TextV9LineStyleV7PatternVAA5ColorVSgtF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"underline","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV","text":"LineStyle"},{"text":".","kind":"text"},{"text":"Pattern","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"color"},{"text":": ","kind":"text"},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/underline(_:pattern:color:)"},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.underline(_:pattern:color:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/underline(_:pattern:color:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"underline","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"isActive"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" = true, ","kind":"text"},{"kind":"externalParam","text":"pattern"},{"kind":"text","text":": "},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV","kind":"typeIdentifier","text":"LineStyle"},{"text":".","kind":"text"},{"text":"Pattern","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","kind":"typeIdentifier"},{"kind":"text","text":" = .solid, "},{"kind":"externalParam","text":"color"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"? = nil) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/underline(_:pattern:color:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/underline(_:pattern:color:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/underline(_:pattern:color:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"underline","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LineStyle","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV"},{"text":".","kind":"text"},{"text":"Pattern","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"color","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"underline(_:pattern:color:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/unredacted().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/unredacted().json new file mode 100644 index 0000000..5aaf74d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/unredacted().json @@ -0,0 +1 @@ +{"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.unredacted()","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"unredacted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/unredacted()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/unredacted()","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"unredacted"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"unredacted()","symbolKind":"method","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"externalID":"s:7SwiftUI4ViewPAAE10unredactedQryF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","roleHeading":"Instance Method","role":"symbol","platforms":[{"name":"iOS","beta":false,"introducedAt":"14.0","unavailable":false,"deprecated":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"11.0"},{"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"14.0","deprecated":false},{"deprecated":false,"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"7.0"}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/unredacted()":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/unredacted()","title":"unredacted()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"unredacted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/unredacted()","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:).json new file mode 100644 index 0000000..1fb6aae --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:element:_:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE12userActivity_7element_QrSS_qd__Sgyqd___So06NSUserE0CtctlF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","symbolKind":"method","role":"symbol","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"14.0","unavailable":false,"beta":false},{"name":"macOS","introducedAt":"11.0","unavailable":false,"beta":false,"deprecated":false},{"beta":false,"introducedAt":"14.0","name":"tvOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"7.0","unavailable":false,"name":"watchOS","beta":false}],"title":"userActivity(_:element:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"userActivity"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"P"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"element"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"P"},{"text":"?, (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"NSUserActivity","preciseIdentifier":"c:objc(cs)NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"roleHeading":"Instance Method"},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.userActivity(_:element:_:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"userActivity","kind":"identifier"},{"kind":"text","text":"<"},{"text":"P","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"activityType","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"element","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"update","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"P"},{"kind":"text","text":", "},{"text":"NSUserActivity","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":"\n"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:element:_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/userActivity(_:element:_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:element:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:element:_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"userActivity"},{"kind":"text","text":"<"},{"text":"P","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"element","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"text":"?, (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"userActivity(_:element:_:)","type":"topic"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:).json new file mode 100644 index 0000000..a52b8b8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:isactive:_:)"]}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:isActive:_:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:7SwiftUI4ViewPAAE12userActivity_8isActive_QrSS_SbySo06NSUserE0CctF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","platforms":[{"introducedAt":"14.0","beta":false,"deprecated":false,"name":"iOS","unavailable":false},{"introducedAt":"11.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"14.0"},{"unavailable":false,"introducedAt":"7.0","name":"watchOS","beta":false,"deprecated":false}],"title":"userActivity(_:isActive:_:)","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"userActivity"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"isActive","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", (","kind":"text"},{"text":"NSUserActivity","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"extendedModule":"SwiftUI","symbolKind":"method","modules":[{"relatedModules":["SwiftUI"],"name":"PlaybackSDK"}],"role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"userActivity","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"activityType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isActive"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true, ","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"update"},{"text":": ","kind":"text"},{"text":"@escaping","kind":"keyword"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":"\n","kind":"text"}]}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"View.userActivity(_:isActive:_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/userActivity(_:isActive:_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:isActive:_:)","kind":"symbol","role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"userActivity","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"userActivity(_:isActive:_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:isactive:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/view-implementations.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/view-implementations.json new file mode 100644 index 0000000..7427904 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/view-implementations.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView"]]},"kind":"article","sections":[],"metadata":{"role":"collectionGroup","modules":[{"name":"PlaybackSDK"}],"title":"View Implementations"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"topicSections":[{"generated":true,"title":"Instance Methods","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accentColor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-24jl2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-2fgn6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(addTraits:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hidden:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hint:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(identifier:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(inputLabels:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(label:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(removeTraits:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(selectionIdentifier:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(sortPriority:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(value:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(action:label:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-2qqmz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-3yhkn","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-752ik","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActions(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-53ntt","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-7nfm8","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAddTraits(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAdjustableAction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChartDescriptor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChildren(children:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-2ytxg","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-3x90l","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-57t73","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7622k","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7ee7j","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-883iw","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-88mk3","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-8g1kv","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityDirectTouch(_:options:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityElement(children:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:equals:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHeading(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHidden(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-4nhze","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-7pklb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-8ro7f","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIdentifier(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIgnoresInvertColors(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-6r70h","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-8ga6r","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-la1o","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-1cph1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7adx6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7t49g","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabeledPair(role:id:in:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLinkedGroup(id:in:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRemoveTraits(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRepresentation(representation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRespondsToUserInteraction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-6cl28","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8doyu","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8hu97","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-hiyo","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-2gmuo","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-4v9g8","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-5yu91","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-7a5jb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3czt7","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3ga74","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-47ctf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-5onnj","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotorEntry(id:in:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityScrollAction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilitySortPriority(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityTextContentType(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-51sfk","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-5agra","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-78lqf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityZoomAction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(isPresented:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(item:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-1p9c8","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-8nchf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-z4fn","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1u0om","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1uhz6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-py9q","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-75se","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-89yi","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-9pzr0","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1kuba","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1ky1b","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-71jcy","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:message:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(item:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-8fo7v","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-92wpz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowedDynamicRange(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsHitTesting(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsTightening(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/anchorPreference(key:value:transform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:body:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:value:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-4l6lv","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-6tc4s","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocapitalization(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocorrectionDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:ignoresSafeAreaEdges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-15a03","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-9sb3l","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(alignment:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(ignoresSafeAreaEdges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-5ukrb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-8t9nl","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:alignment:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-5st6w","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-6gpa2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-7s4kd","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-8bw3q","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badgeProminence(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/baselineOffset(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blendMode(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blur(radius:opaque:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/bold(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/border(_:width:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/brightness(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonBorderShape(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonRepeatBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7bm2s","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7q62k","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipShape(_:style:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipped(antialiased:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorEffect(_:isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorInvert()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorMultiply(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorScheme(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/compositingGroup()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(_:for:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(for:alignment:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:count:span:spacing:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerShape(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-2nato","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-txh9","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:for:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:_:eoFill:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:eoFill:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentTransition(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(forSelectionType:menu:primaryAction:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:preview:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contrast(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlGroupStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlSize(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(name:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/cornerRadius(_:antialiased:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/datePickerStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultAppStorage(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultFocus(_:_:priority:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultHoverEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultScrollAnchor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defersSystemGestures(on:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/deleteDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogIcon(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-28av9","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-2lazw","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-99pj5","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(isSuppressed:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disableAutocorrection(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disclosureGroupStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/distortionEffect(_:maxSampleOffset:isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:preview:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/drawingGroup(opaque:colorMode:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dropDestination(for:action:isTargeted:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-4v6j4","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-8zqiy","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/edgesIgnoringSafeArea(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environmentObject(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogBrowserOptions(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-4sto5","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-7gjj7","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-9hjrp","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogCustomizationID(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogDefaultDirectory(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogImportsUnresolvedAliases(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-2ip4n","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-67rn6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-dd3u","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogURLEnabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-7pleq","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-8t5re","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-ij1k","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:onCompletion:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:onCancellation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:onCancellation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findNavigator(isPresented:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize(horizontal:vertical:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/flipsForRightToLeftLayoutDirection(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusEffectDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:interactions:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:equals:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-1g0dd","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-6gnqz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-3301g","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-8fmby","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-1qpp3","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-6shvo","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-55vrz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-7hm2d","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/font(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontDesign(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWeight(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWidth(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundColor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/formStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(width:height:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(isPresented:onDismiss:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(item:onDismiss:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gaugeStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/geometryGroup()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gesture(_:including:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/grayscale(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellAnchor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellColumns(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellUnsizedAxes(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridColumnAlignment(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/groupBoxStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/handlesExternalEvents(preferring:allowing:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/headerProminence(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-1en1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-3sq7v","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-8cfgd","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hidden()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/highPriorityGesture(_:including:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffectDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hueRotation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/id(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/ignoresSafeArea(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/imageScale(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/indexViewStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspector(isPresented:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(min:ideal:max:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactionActivityTrackingTag(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactiveDismissDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/invalidatableContent(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/italic(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/itemProvider(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/kerning(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:localization:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardType(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:repeating:content:keyframes:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:trigger:content:keyframes:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labeledContentStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelsHidden()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layerEffect(_:maxSampleOffset:isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutDirectionBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutPriority(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutValue(key:value:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:reservesSpace:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineSpacing(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-730o0","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-9oyri","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowBackground(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowInsets(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparator(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparatorTint(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSpacing(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparator(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparatorTint(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-1297l","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-71o7f","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/luminanceToAlpha()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(alignment:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/matchedGeometryEffect(id:in:properties:anchor:isSource:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuActionDismissBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuIndicator(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuOrder(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/minimumScaleFactor(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/modifier(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospaced(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospacedDigit()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/moveDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/multilineTextAlignment(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarBackButtonHidden(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarHidden(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:trailing:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(trailing:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-2tvbb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-8f9fq","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-90yey","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-4o2oy","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-5sstf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-7pj7v","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitleDisplayMode(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(for:destination:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(isPresented:destination:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(item:destination:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-2ql2l","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-4gkje","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-11ys1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-1s345","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-3wrqo","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-9r1fc","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(min:ideal:max:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2cbbq","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2hqj","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-5y36i","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-9neej","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-voku","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationViewStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(x:y:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onAppear(perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-302sn","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-6p46k","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinueUserActivity(_:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-2e5rp","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-6ujjf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDisappear(perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:preview:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4bjnb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4vyza","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6oggf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6vsp","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-7lgd2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-81vs3","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onHover(perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:phases:action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(characters:phases:action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(keys:phases:action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(phases:action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:pressing:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onOpenURL(perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onPreferenceChange(_:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onReceive(_:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onSubmit(of:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-1ek8g","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-9kxks","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:perform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/opacity(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:alignment:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:ignoresSafeAreaEdges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:in:fillStyle:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(alignment:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:alignment:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-8la2x","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-94ovh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/paletteSelectionEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/persistentSystemOverlays(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:content:animation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:trigger:content:animation:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/pickerStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(isPresented:attachmentAnchor:arrowEdge:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(item:attachmentAnchor:arrowEdge:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(x:y:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preference(key:value:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preferredColorScheme(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(alignment:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackgroundInteraction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(horizontal:vertical:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationContentInteraction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCornerRadius(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:selection:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDragIndicator(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewContext(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDevice(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDisplayName(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewInterfaceOrientation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewLayout(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/privacySensitive(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/progressViewStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/projectionEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/redacted(reason:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/refreshable(action:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-7vs1w","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-dhl7","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/replaceDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotationEffect(_:anchor:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-8xuc6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-9xmw","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-1cwxh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-8hgvb","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/saturation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-478js","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-6nq52","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(x:y:anchor:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFill()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFit()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:edges:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollBounceBehavior(_:axes:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollClipDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollContentBackground(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDismissesKeyboard(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicators(_:axes:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(onAppear:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(trigger:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollPosition(id:anchor:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetLayout(isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(_:axis:transition:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(topLeading:bottomTrailing:axis:transition:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-95mzh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-9im0b","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchDictationBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchPresentationToolbarBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:activation:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:scopes:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:for:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-34tbo","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-3ns5o","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-8jius","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-1yx1t","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-67lnp","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-6slax","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-5aijf","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-6x0q","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-9e770","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4fef2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4ot2g","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-9wb1c","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-3i3vq","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-6jzmh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-7pbb6","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/selectionDisabled(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:condition:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(trigger:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/shadow(color:radius:x:y:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(isPresented:onDismiss:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(item:onDismiss:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/simultaneousGesture(_:including:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAdjustedPitch(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAlwaysIncludesPunctuation(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAnnouncementsQueued(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechSpellsOutCharacters(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/springLoadingBehavior(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBar(hidden:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBarHidden(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/strikethrough(_:pattern:color:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitLabel(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitScope(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/swipeActions(edge:allowsFullSwipe:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:isActive:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:value:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffectsRemoved(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolRenderingMode(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolVariant(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabItem(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabViewStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableColumnHeaders(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tag(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(id:priority:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(priority:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textCase(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textContentType(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textEditorStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textFieldStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textInputAutocapitalization(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textScale(_:isEnabled:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textSelection(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-5usev","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-68ihh","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toggleStyle(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(_:for:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-7wl29","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-9r9cc","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(id:content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(removing:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-318bv","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-3faty","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarColorScheme(_:for:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarRole(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleDisplayMode(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleMenu(content:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tracking(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:body:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(value:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformAnchorPreference(key:value:transform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEnvironment(_:transform:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformPreference(_:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transition(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/truncationMode(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-3rtbx","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-58dqq","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-xox2","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-4ax4k","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-70p7f","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/underline(_:pattern:color:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/unredacted()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:element:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:isActive:_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/visualEffect(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/zIndex(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontWidth(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fontWidth","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier","text":"Font"},{"kind":"text","text":"."},{"text":"Width","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV5WidthV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fontWidth(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontwidth(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWidth(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contrast(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contrast"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"contrast(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contrast(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contrast(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultFocus(_:_:priority:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultFocus"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"priority","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"DefaultFocusEvaluationPriority","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30DefaultFocusEvaluationPriorityV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"defaultFocus(_:_:priority:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultfocus(_:_:priority:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultFocus(_:_:priority:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffect(_:options:isActive:)":{"role":"symbol","title":"symbolEffect(_:options:isActive:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:isactive:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:isActive:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolEffect","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"options","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SymbolEffectOptions","kind":"typeIdentifier","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV"},{"text":", ","kind":"text"},{"text":"isActive","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:_:)-55vrz":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedValue"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","role":"symbol","title":"focusedValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-55vrz","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-55vrz"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-47ctf":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-47ctf","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-47ctf","abstract":[],"title":"accessibilityRotor(_:textRanges:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"(","kind":"text"},{"text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"text":": [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listItemTint(_:)-730o0":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-730o0","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-730o0","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listItemTint"},{"kind":"text","text":"("},{"text":"ListItemTint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12ListItemTintV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","type":"topic","title":"listItemTint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(in:fillStyle:)-8t9nl":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-8t9nl","title":"background(in:fillStyle:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-8t9nl"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/swipeActions(edge:allowsFullSwipe:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/swipeactions(edge:allowsfullswipe:content:)","title":"swipeActions(edge:allowsFullSwipe:content:)","abstract":[],"kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"swipeActions","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO","kind":"typeIdentifier","text":"HorizontalEdge"},{"kind":"text","text":", "},{"text":"allowsFullSwipe","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/swipeActions(edge:allowsFullSwipe:content:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackground(alignment:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(alignment:content:)","title":"presentationBackground(alignment:content:)","abstract":[],"kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(alignment:content:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-ij1k":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporterFilenameLabel"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-ij1k","role":"symbol","abstract":[],"title":"fileExporterFilenameLabel(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-ij1k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-57t73":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-57t73","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier","text":"AccessibilityCustomContentKey"},{"kind":"text","text":", "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"abstract":[],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-57t73","kind":"symbol","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(hint:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hint:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"hint","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hint:)","title":"accessibility(hint:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/bold(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/bold(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"bold"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/bold(_:)","kind":"symbol","title":"bold(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/baselineOffset(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/baselineoffset(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/baselineOffset(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"baselineOffset","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"baselineOffset(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onSubmit(of:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onsubmit(of:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onSubmit(of:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onSubmit","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"SubmitTriggers","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SubmitTriggersV"},{"kind":"text","text":", (() -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"onSubmit(of:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"document"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":"?, "},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-29wbp","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)":{"deprecated":true,"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onLongPressGesture"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"minimumDuration"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maximumDistance","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"pressing"},{"kind":"text","text":": (("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","title":"onLongPressGesture(minimumDuration:maximumDistance:pressing:perform:)","abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityFocused(_:equals:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:equals:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:equals:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityFocused"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"AccessibilityFocusState","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Value"},{"text":">.","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"equals","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityFocused(_:equals:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)-3g9ko","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentType"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"kind":"text","text":", "},{"text":"defaultFilename","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"fileExporter(isPresented:document:contentType:defaultFilename:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/submitLabel(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/submitlabel(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitLabel(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"submitLabel"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11SubmitLabelV","text":"SubmitLabel"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"submitLabel(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(phases:action:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(phases:action:)","role":"symbol","title":"onKeyPress(phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"phases","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"kind":"text","text":", "},{"kind":"externalParam","text":"action"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(phases:action:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentShape(_:_:eoFill:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:_:eofill:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:_:eoFill:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentShape","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI17ContentShapeKindsV","kind":"typeIdentifier","text":"ContentShapeKinds"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"eoFill"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"contentShape(_:_:eoFill:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(trailing:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(trailing:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(trailing:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarItems"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"trailing"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"navigationBarItems(trailing:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-6jzmh":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-6jzmh","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-6jzmh","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"searchable(text:tokens:placement:prompt:token:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labelStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labelstyle(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelStyle(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"labelStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"labelStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onReceive(_:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onreceive(_:perform:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onReceive(_:perform:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onReceive","kind":"identifier"},{"kind":"text","text":"<"},{"text":"P","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"P"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Output"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"onReceive(_:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:delegate:)-4bjnb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4bjnb","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4bjnb","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"text":"], ","kind":"text"},{"text":"delegate","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"onDrop(of:delegate:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:)-4gkje":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-4gkje","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-4gkje","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","title":"navigationDocument(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textCase(_:)":{"title":"textCase(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textcase(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textCase"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":".","kind":"text"},{"text":"Case","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV4CaseO"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textCase(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:ignoresSafeAreaEdges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:ignoressafeareaedges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:ignoresSafeAreaEdges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"background(_:ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/edgesIgnoringSafeArea(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/edgesignoringsafearea(_:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/edgesIgnoringSafeArea(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"edgesIgnoringSafeArea"},{"text":"(","kind":"text"},{"text":"Edge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"edgesIgnoringSafeArea(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityChildren(children:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychildren(children:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChildren(children:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityChildren","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"children","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityChildren(children:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffect(_:isEnabled:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:isenabled:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:isEnabled:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffect","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"HoverEffect","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"hoverEffect(_:isEnabled:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-7pbb6":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-7pbb6","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-7pbb6","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"searchable(text:tokens:placement:prompt:token:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSeparator(_:edges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparator(_:edges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparator(_:edges:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSeparator"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"listSectionSeparator(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/replaceDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/replacedisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/replaceDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"replaceDisabled"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"replaceDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultHoverEffect(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaulthovereffect(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultHoverEffect(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultHoverEffect"},{"text":"(","kind":"text"},{"text":"HoverEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11HoverEffectV"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"defaultHoverEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fullScreenCover(isPresented:onDismiss:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(ispresented:ondismiss:content:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(isPresented:onDismiss:content:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullScreenCover"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?, "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"fullScreenCover(isPresented:onDismiss:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-1cph1":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-1cph1","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityLabel"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-1cph1","kind":"symbol","title":"accessibilityLabel(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1aysx","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environmentObject(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environmentobject(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environmentObject(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"environmentObject"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"environmentObject(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/renameAction(_:)-7vs1w":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-7vs1w","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-7vs1w","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"renameAction","kind":"identifier"},{"kind":"text","text":"(() -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"renameAction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollBounceBehavior(_:axes:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollbouncebehavior(_:axes:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollBounceBehavior(_:axes:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollBounceBehavior"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20ScrollBounceBehaviorV","text":"ScrollBounceBehavior","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"axes","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"scrollBounceBehavior(_:axes:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-9r1fc":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-9r1fc","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"text":"SharePreview","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:s5NeverO","text":"Never","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-9r1fc","kind":"symbol","title":"navigationDocument(_:preview:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/groupBoxStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/groupboxstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/groupBoxStyle(_:)","role":"symbol","type":"topic","title":"groupBoxStyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"groupBoxStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alignmentGuide(_:computeValue:)-8fo7v":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-8fo7v","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-8fo7v","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alignmentGuide"},{"kind":"text","text":"("},{"text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"computeValue"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","title":"alignmentGuide(_:computeValue:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textSelection(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"textSelection","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textselection(_:)","kind":"symbol","title":"textSelection(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textSelection(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":", ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-2e7rz","title":"fileExporter(isPresented:documents:contentType:onCompletion:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-1v74d","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d","role":"symbol","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-88mk3":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-88mk3","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-88mk3","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/redacted(reason:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/redacted(reason:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/redacted(reason:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"redacted","kind":"identifier"},{"kind":"text","text":"("},{"text":"reason","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RedactionReasons","preciseIdentifier":"s:7SwiftUI16RedactionReasonsV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","title":"redacted(reason:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-8nchf":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-8nchf","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-8nchf","kind":"symbol","title":"alert(_:isPresented:actions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-7k3fz","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackground(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackground(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackground(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"presentationBackground","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"presentationBackground(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogIcon(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogicon(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogIcon(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogIcon"},{"text":"(","kind":"text"},{"text":"Image","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"dialogIcon(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/aspectRatio(_:contentMode:)-6tc4s":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-6tc4s","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-6tc4s","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"aspectRatio","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"contentMode"},{"kind":"text","text":": "},{"text":"ContentMode","preciseIdentifier":"s:7SwiftUI11ContentModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"aspectRatio(_:contentMode:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActivationPoint(_:)-7nfm8":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-7nfm8","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-7nfm8","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityActivationPoint"},{"kind":"text","text":"("},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityActivationPoint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(item:destination:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(item:destination:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(item:destination:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationDestination","kind":"identifier"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Optional","preciseIdentifier":"s:Sq","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":">>, "},{"text":"destination","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":") -> ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"navigationDestination(item:destination:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-5y36i":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-5y36i","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-5y36i","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"navigationTitle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRemoveTraits(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityremovetraits(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRemoveTraits","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRemoveTraits(_:)","title":"accessibilityRemoveTraits(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/selectionDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/selectiondisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/selectionDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"selectionDisabled"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"selectionDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(forSelectionType:menu:primaryAction:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(forSelectionType:menu:primaryAction:)","type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(forselectiontype:menu:primaryaction:)","title":"contextMenu(forSelectionType:menu:primaryAction:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"I"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"forSelectionType"},{"kind":"text","text":": "},{"text":"I","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"menu"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"primaryAction","kind":"externalParam"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-9c7k1","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(menuItems:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contextMenu","kind":"identifier"},{"text":"<","kind":"text"},{"text":"MenuItems","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"menuItems"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"MenuItems"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"contextMenu(menuItems:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-90yey":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-90yey","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-90yey","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"navigationBarTitle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/mask(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/mask(_:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"mask","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Mask"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Mask"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"mask(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorMultiply(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colormultiply(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorMultiply(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"colorMultiply"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"colorMultiply(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textInputAutocapitalization(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textinputautocapitalization(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textInputAutocapitalization(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textInputAutocapitalization"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI27TextInputAutocapitalizationV","text":"TextInputAutocapitalization"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"textInputAutocapitalization(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspectorColumnWidth(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inspectorColumnWidth"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"inspectorColumnWidth(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/simultaneousGesture(_:including:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/simultaneousgesture(_:including:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/simultaneousGesture(_:including:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"simultaneousGesture"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"text":"including","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"GestureMask","preciseIdentifier":"s:7SwiftUI11GestureMaskV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"simultaneousGesture(_:including:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/datePickerStyle(_:)":{"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"datePickerStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"datePickerStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/datepickerstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/datePickerStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-8g1kv":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-8g1kv","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-8g1kv","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier","text":"Importance"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focused(_:)":{"title":"focused(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focused"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">."},{"text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listItemTint(_:)-9oyri":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listitemtint(_:)-9oyri","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listItemTint(_:)-9oyri","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listItemTint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"listItemTint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-8cfgd":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-8cfgd","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-8cfgd","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"help","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","type":"topic","title":"help(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-6gpa2":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-6gpa2","type":"topic","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-6gpa2","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badge"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/moveDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/movedisabled(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/moveDisabled(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"moveDisabled"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"moveDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-9wb1c":{"deprecated":true,"title":"searchable(text:placement:prompt:suggestions:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-9wb1c","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-9wb1c","kind":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityIgnoresInvertColors(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityignoresinvertcolors(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIgnoresInvertColors(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityIgnoresInvertColors","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","title":"accessibilityIgnoresInvertColors(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:content:)","deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:content:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Alert","preciseIdentifier":"s:7SwiftUI5AlertV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"alert(isPresented:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchPresentationToolbarBehavior(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchpresentationtoolbarbehavior(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchPresentationToolbarBehavior(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchPresentationToolbarBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"SearchPresentationToolbarBehavior","preciseIdentifier":"s:7SwiftUI33SearchPresentationToolbarBehaviorV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"searchPresentationToolbarBehavior(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicatorsFlash(trigger:)":{"abstract":[],"kind":"symbol","title":"scrollIndicatorsFlash(trigger:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(trigger:)","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(trigger:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollIndicatorsFlash"},{"kind":"text","text":"("},{"kind":"externalParam","text":"trigger"},{"text":": some ","kind":"text"},{"text":"Equatable","kind":"typeIdentifier","preciseIdentifier":"s:SQ"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/userActivity(_:isActive:_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:isActive:_:)","kind":"symbol","role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"userActivity","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isActive"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"userActivity(_:isActive:_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:isactive:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/actionSheet(item:content:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"actionSheet"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"T","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ActionSheet","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(item:content:)","deprecated":true,"kind":"symbol","title":"actionSheet(item:content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(item:content:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/kerning(_:)":{"title":"kerning(_:)","abstract":[],"type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/kerning(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"kerning"},{"kind":"text","text":"("},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/kerning(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyframeAnimator(initialValue:repeating:content:keyframes:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"initialValue","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":", ","kind":"text"},{"text":"repeating","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"keyframes"},{"text":": (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI9KeyframesP","kind":"typeIdentifier","text":"Keyframes"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:repeating:content:keyframes:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:repeating:content:keyframes:)","title":"keyframeAnimator(initialValue:repeating:content:keyframes:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:)-8la2x":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"padding","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-8la2x","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-8la2x","title":"padding(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":">, "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-55pvz","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchSuggestions(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchSuggestions","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:)","title":"searchSuggestions(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-6xoha","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(_:trigger:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sensoryFeedback"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"SensoryFeedback","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:)","kind":"symbol","title":"sensoryFeedback(_:trigger:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarBackground(_:for:)-3faty":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","kind":"typeIdentifier","text":"ToolbarPlacement"},{"text":"...) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-3faty","kind":"symbol","title":"toolbarBackground(_:for:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-3faty","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(isSuppressed:)":{"title":"dialogSuppressionToggle(isSuppressed:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(issuppressed:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(isSuppressed:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"("},{"text":"isSuppressed","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-4nhze":{"title":"accessibilityHint(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-4nhze","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-4nhze","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityHint","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-1u0om":{"title":"alert(_:isPresented:actions:message:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1u0om","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1u0om","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorInvert()":{"title":"colorInvert()","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorInvert()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colorinvert()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorInvert"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(id:content:)":{"title":"toolbar(id:content:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(id:content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(id:content:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-dd3u":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-dd3u","type":"topic","title":"fileDialogMessage(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogMessage"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-dd3u","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/projectionEffect(_:)":{"title":"projectionEffect(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/projectionEffect(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/projectioneffect(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"projectionEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI19ProjectionTransformV","kind":"typeIdentifier","text":"ProjectionTransform"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:)-1cwxh":{"title":"safeAreaPadding(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-1cwxh","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-1cwxh","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-28av9":{"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-28av9","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-28av9","title":"dialogSuppressionToggle(_:isSuppressed:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dialogSuppressionToggle","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typesettingLanguage(_:isEnabled:)-70p7f":{"type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typesettingLanguage"},{"text":"(","kind":"text"},{"text":"Locale","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation6LocaleV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation6LocaleV8LanguageV","text":"Language"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-70p7f","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-70p7f","title":"typesettingLanguage(_:isEnabled:)","kind":"symbol","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTransition(_:axis:transition:)":{"title":"scrollTransition(_:axis:transition:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(_:axis:transition:)","type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(_:axis:transition:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scrollTransition","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"axis"},{"text":": ","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"transition"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","text":"ScrollTransitionPhase"},{"kind":"text","text":") -> some "},{"text":"VisualEffect","preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSeparator(_:edges:)":{"role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listRowSeparator","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV","text":"Set"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparator(_:edges:)","title":"listRowSeparator(_:edges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparator(_:edges:)","type":"topic","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2":{"title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-5fuv2","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollDismissesKeyboard(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollDismissesKeyboard","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI27ScrollDismissesKeyboardModeV","text":"ScrollDismissesKeyboardMode","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"scrollDismissesKeyboard(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldismisseskeyboard(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDismissesKeyboard(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accentColor(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accentColor(_:)","title":"accentColor(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accentcolor(_:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accentColor"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"deprecated":true},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tint(_:)-68ihh":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-68ihh","kind":"symbol","title":"tint(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-68ihh","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"tint"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/deleteDisabled(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/deleteDisabled(_:)","title":"deleteDisabled(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/deletedisabled(_:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"deleteDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:coordinateSpace:perform:)-1ek8g":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-1ek8g","kind":"symbol","title":"onTapGesture(count:coordinateSpace:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-1ek8g","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onTapGesture"},{"text":"(","kind":"text"},{"text":"count","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": some "},{"text":"CoordinateSpaceProtocol","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGPoint","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowsTightening(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsTightening(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/allowstightening(_:)","role":"symbol","title":"allowsTightening(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowsTightening","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(for:destination:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(for:destination:)","title":"navigationDestination(for:destination:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(for:destination:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDestination"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"text":"destination","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-la1o":{"type":"topic","title":"accessibilityInputLabels(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-la1o","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityInputLabels","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">(["},{"text":"S","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-la1o","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tableColumnHeaders(_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"tableColumnHeaders","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tablecolumnheaders(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableColumnHeaders(_:)","title":"tableColumnHeaders(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationContentInteraction(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcontentinteraction(_:)","title":"presentationContentInteraction(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationContentInteraction","kind":"identifier"},{"kind":"text","text":"("},{"text":"PresentationContentInteraction","preciseIdentifier":"s:7SwiftUI30PresentationContentInteractionV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationContentInteraction(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilitySortPriority(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitysortpriority(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilitySortPriority(_:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilitySortPriority","kind":"identifier"},{"kind":"text","text":"("},{"text":"Double","preciseIdentifier":"s:Sd","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilitySortPriority(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/renameAction(_:)-dhl7":{"title":"renameAction(_:)","abstract":[],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/renameaction(_:)-dhl7","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/renameAction(_:)-dhl7","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"renameAction"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV","text":"Binding"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-hiyo":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-hiyo","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-hiyo","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"accessibilityRotor(_:entries:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:onCompletion:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:oncompletion:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:onCompletion:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"allowedContentTypes"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType"},{"kind":"text","text":"], "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"URL","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"fileImporter(isPresented:allowedContentTypes:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"text":"allowedContentTypes","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)","abstract":[],"role":"symbol","type":"topic","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-5onnj":{"role":"symbol","type":"topic","abstract":[],"title":"accessibilityRotor(_:textRanges:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-5onnj","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"textRanges","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-5onnj"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/findNavigator(isPresented:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/findnavigator(ispresented:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"findNavigator"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findNavigator(isPresented:)","kind":"symbol","title":"findNavigator(isPresented:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labelsHidden()":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labelshidden()","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"labelsHidden","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labelsHidden()","kind":"symbol","title":"labelsHidden()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-3ga74":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3ga74","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV"},{"kind":"text","text":">]) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3ga74","kind":"symbol","title":"accessibilityRotor(_:textRanges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileExporter"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"defaultFilename","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:item:contentTypes:defaultFilename:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabeledPair(role:id:in:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabeledpair(role:id:in:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabeledPair","kind":"identifier"},{"kind":"text","text":"<"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"role"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28AccessibilityLabeledPairRoleO","kind":"typeIdentifier","text":"AccessibilityLabeledPairRole"},{"kind":"text","text":", "},{"kind":"externalParam","text":"id"},{"text":": ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"in"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ID","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabeledPair(role:id:in:)","kind":"symbol","title":"accessibilityLabeledPair(role:id:in:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-5agra":{"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityValue"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"type":"topic","role":"symbol","title":"accessibilityValue(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-5agra","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-5agra"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyframeAnimator(initialValue:trigger:content:keyframes:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"keyframeAnimator","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Value"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"initialValue"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"trigger","kind":"externalParam"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"keyframes"},{"text":": (","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9KeyframesP","text":"Keyframes"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"keyframeAnimator(initialValue:trigger:content:keyframes:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyframeanimator(initialvalue:trigger:content:keyframes:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyframeAnimator(initialValue:trigger:content:keyframes:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"text":"minimumDuration","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maximumDistance"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": () -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onPressingChanged"},{"kind":"text","text":": (("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)","kind":"symbol","title":"onLongPressGesture(minimumDuration:maximumDistance:perform:onPressingChanged:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(x:y:anchor:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(x:y:anchor:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaleEffect"},{"kind":"text","text":"("},{"text":"x","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"text":"UnitPoint","preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(x:y:anchor:)","kind":"symbol","title":"scaleEffect(x:y:anchor:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCompactAdaptation(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(_:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationCompactAdaptation"},{"text":"(","kind":"text"},{"text":"PresentationAdaptation","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"presentationCompactAdaptation(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-9hjrp":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"type":"topic","role":"symbol","title":"fileDialogConfirmationLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-9hjrp","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-9hjrp"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textFieldStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textfieldstyle(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"textFieldStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textFieldStyle(_:)","kind":"symbol","title":"textFieldStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:perform:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onTapGesture"},{"kind":"text","text":"("},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": () -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:perform:)","kind":"symbol","title":"onTapGesture(count:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuOrder(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuorder(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"menuOrder","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI9MenuOrderV","text":"MenuOrder","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuOrder(_:)","kind":"symbol","title":"menuOrder(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-1uhz6":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-1uhz6","role":"symbol","title":"alert(_:isPresented:actions:message:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-1uhz6","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-8f9fq":{"deprecated":true,"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","role":"symbol","title":"navigationBarTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-8f9fq","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-8f9fq"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:files:onCompletion:onCancellation:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:oncancellation:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"fileMover"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"files"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:onCancellation:)","kind":"symbol","title":"fileMover(isPresented:files:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchScopes(_:activation:_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:activation:_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:activation:_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchScopes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":">, ","kind":"text"},{"text":"activation","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchScopeActivation","preciseIdentifier":"s:7SwiftUI21SearchScopeActivationV","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"searchScopes(_:activation:_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActivationPoint(_:)-53ntt":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactivationpoint(_:)-53ntt","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityActivationPoint","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActivationPoint(_:)-53ntt","kind":"symbol","title":"accessibilityActivationPoint(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolVariant(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symbolvariant(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolVariant"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14SymbolVariantsV","text":"SymbolVariants"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolVariant(_:)","kind":"symbol","title":"symbolVariant(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:)":{"abstract":[],"title":"focusedValue(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:)","role":"symbol","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedValue","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:pressing:perform:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:pressing:perform:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"minimumDuration"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"pressing"},{"text":": ((","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:pressing:perform:)","kind":"symbol","title":"onLongPressGesture(minimumDuration:pressing:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/controlGroupStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/controlgroupstyle(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"controlGroupStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlGroupStyle(_:)","kind":"symbol","title":"controlGroupStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-6vsp":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6vsp","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": (["},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"kind":"text","text":"], "},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6vsp","kind":"symbol","title":"onDrop(of:isTargeted:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityElement(children:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityelement(children:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityElement"},{"kind":"text","text":"("},{"text":"children","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI26AccessibilityChildBehaviorV","text":"AccessibilityChildBehavior","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityElement(children:)","kind":"symbol","title":"accessibilityElement(children:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onTapGesture(count:coordinateSpace:perform:)-9kxks":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ontapgesture(count:coordinatespace:perform:)-9kxks","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"onTapGesture"},{"kind":"text","text":"("},{"text":"count","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"coordinateSpace"},{"text":": ","kind":"text"},{"text":"CoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier","text":"CGPoint"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onTapGesture(count:coordinateSpace:perform:)-9kxks","kind":"symbol","title":"onTapGesture(count:coordinateSpace:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(keys:phases:action:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(keys:phases:action:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"keys"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","kind":"typeIdentifier","text":"Set"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV"},{"text":">, ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":"."},{"text":"Phases","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV"},{"kind":"text","text":", "},{"text":"action","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(keys:phases:action:)","kind":"symbol","title":"onKeyPress(keys:phases:action:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardType(_:)":{"role":"symbol","kind":"symbol","title":"keyboardType(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"keyboardType","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@UIKeyboardType","text":"UIKeyboardType"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardtype(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardType(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contextMenu","kind":"identifier"},{"kind":"text","text":"<"},{"text":"MenuItems","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"ContextMenu","preciseIdentifier":"s:7SwiftUI11ContextMenuV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"MenuItems"},{"kind":"text","text":">?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(_:)","kind":"symbol","title":"contextMenu(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-2qqmz":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-2qqmz","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"named"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-2qqmz","kind":"symbol","title":"accessibilityAction(named:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(in:fillStyle:)-5ukrb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(in:fillstyle:)-5ukrb","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(in:fillStyle:)-5ukrb","kind":"symbol","title":"background(in:fillStyle:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogBrowserOptions(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogbrowseroptions(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogBrowserOptions"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"FileDialogBrowserOptions","preciseIdentifier":"s:7SwiftUI24FileDialogBrowserOptionsV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogBrowserOptions(_:)","kind":"symbol","title":"fileDialogBrowserOptions(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationBackgroundInteraction(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationbackgroundinteraction(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationBackgroundInteraction"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"PresentationBackgroundInteraction","preciseIdentifier":"s:7SwiftUI33PresentationBackgroundInteractionV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationBackgroundInteraction(_:)","kind":"symbol","title":"presentationBackgroundInteraction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityActions(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityactions(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityActions"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityActions(_:)","kind":"symbol","title":"accessibilityActions(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/autocorrectionDisabled(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/autocorrectiondisabled(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"autocorrectionDisabled","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocorrectionDisabled(_:)","kind":"symbol","title":"autocorrectionDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(_:anchor:)-6nq52":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-6nq52","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scaleEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":", "},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-6nq52","kind":"symbol","title":"scaleEffect(_:anchor:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridColumnAlignment(_:)":{"abstract":[],"title":"gridColumnAlignment(_:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridColumnAlignment(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"gridColumnAlignment"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"HorizontalAlignment","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcolumnalignment(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/id(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/id(_:)","title":"id(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/id(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"id"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-5yu91":{"abstract":[],"title":"accessibilityRotor(_:entries:entryLabel:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-5yu91","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-5yu91"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusable(_:)":{"abstract":[],"type":"topic","title":"focusable(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-2gmuo":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"text":"AccessibilitySystemRotor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"accessibilityRotor(_:entries:entryLabel:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-2gmuo","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-2gmuo"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSeparatorTint(_:edges:)":{"abstract":[],"title":"listSectionSeparatorTint(_:edges:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSeparatorTint(_:edges:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listSectionSeparatorTint"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?, ","kind":"text"},{"text":"edges","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"text":".","kind":"text"},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionseparatortint(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationViewStyle(_:)":{"abstract":[],"title":"navigationViewStyle(_:)","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationViewStyle(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationViewStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationviewstyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/visualEffect(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"visualEffect","kind":"identifier"},{"kind":"text","text":"(("},{"text":"EmptyVisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13GeometryProxyV","text":"GeometryProxy","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier","text":"VisualEffect"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"abstract":[],"title":"visualEffect(_:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/visualeffect(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/visualEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaInset(edge:alignment:spacing:content:)-8xuc6":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"safeAreaInset","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"edge","kind":"externalParam"},{"kind":"text","text":": "},{"text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19HorizontalAlignmentV","text":"HorizontalAlignment"},{"kind":"text","text":", "},{"text":"spacing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-8xuc6","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-8xuc6","abstract":[],"title":"safeAreaInset(edge:alignment:spacing:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tag(_:)":{"title":"tag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tag(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"tag"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tag(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dropDestination(for:action:isTargeted:)":{"title":"dropDestination(for:action:isTargeted:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dropdestination(for:action:istargeted:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dropDestination","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":".Type, "},{"kind":"externalParam","text":"action"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"], ","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isTargeted"},{"text":": (","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dropDestination(for:action:isTargeted:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicatorsFlash(onAppear:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollIndicatorsFlash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"onAppear","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicatorsFlash(onAppear:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicatorsflash(onappear:)","title":"scrollIndicatorsFlash(onAppear:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusEffectDisabled(_:)":{"title":"focusEffectDisabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focuseffectdisabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusEffectDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusEffectDisabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75":{"title":"accessibilityRotor(_:entries:entryID:entryLabel:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"ID","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryID"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"kind":"text","text":": "},{"text":"KeyPath","preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-85j75","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-1yx1t":{"title":"searchable(text:isPresented:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-1yx1t","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-1yx1t","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disabled(_:)":{"title":"disabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"disabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:alignment:_:)":{"title":"containerRelativeFrame(_:alignment:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"containerRelativeFrame","kind":"identifier"},{"kind":"text","text":"("},{"text":"Axis","preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":", ("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:alignment:)":{"title":"background(_:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:alignment:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Background"},{"text":">(","kind":"text"},{"text":"Background","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:alignment:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffectDisabled(_:)":{"title":"hoverEffectDisabled(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffectdisabled(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffectDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffectDisabled(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewStyle(_:)":{"title":"navigationSplitViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewStyle"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh","type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-npwh","kind":"symbol","title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-51sfk":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-51sfk","role":"symbol","title":"accessibilityValue(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-51sfk","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns":{"title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-7urns","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:body:)":{"kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:body:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Animation","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"kind":"text","text":"?, "},{"text":"body","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"PlaceholderContentView","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"title":"animation(_:body:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:body:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-7pj7v":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-7pj7v","role":"symbol","title":"navigationBarTitle(_:displayMode:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-7pj7v","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"displayMode"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","text":"NavigationBarItem","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"TitleDisplayMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewInterfaceOrientation(_:)":{"title":"previewInterfaceOrientation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewinterfaceorientation(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewInterfaceOrientation"},{"kind":"text","text":"("},{"text":"InterfaceOrientation","preciseIdentifier":"s:7SwiftUI20InterfaceOrientationV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewInterfaceOrientation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defersSystemGestures(on:)":{"title":"defersSystemGestures(on:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/deferssystemgestures(on:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"defersSystemGestures","kind":"identifier"},{"kind":"text","text":"("},{"text":"on","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defersSystemGestures(on:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewDisplayName(_:)":{"title":"previewDisplayName(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewdisplayname(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewDisplayName","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDisplayName(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-75se":{"type":"topic","role":"symbol","title":"alert(_:isPresented:presenting:actions:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-75se","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-75se","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c":{"title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-1lz4c","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollIndicators(_:axes:)":{"title":"scrollIndicators(_:axes:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollindicators(_:axes:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollIndicators"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI25ScrollIndicatorVisibilityV","text":"ScrollIndicatorVisibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"axes","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollIndicators(_:axes:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuActionDismissBehavior(_:)":{"title":"menuActionDismissBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuactiondismissbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"menuActionDismissBehavior","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MenuActionDismissBehaviorV","text":"MenuActionDismissBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuActionDismissBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:in:fillStyle:)-15a03":{"title":"background(_:in:fillStyle:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-15a03","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-15a03","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollPosition(id:anchor:)":{"title":"scrollPosition(id:anchor:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollposition(id:anchor:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollPosition","kind":"identifier"},{"text":"(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<(some ","kind":"text"},{"kind":"typeIdentifier","text":"Hashable","preciseIdentifier":"s:SH"},{"text":")?>, ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollPosition(id:anchor:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(content:)-9r9cc":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-9r9cc","title":"toolbar(content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-9r9cc","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbar","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneObject(_:)-3301g":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-3301g","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedSceneObject","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-3301g","title":"focusedSceneObject(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-7pklb":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-7pklb","title":"accessibilityHint(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHint","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-7pklb","type":"topic","abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/minimumScaleFactor(_:)":{"title":"minimumScaleFactor(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/minimumscalefactor(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"minimumScaleFactor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/minimumScaleFactor(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(_:in:fillStyle:)-9sb3l":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(_:in:fillstyle:)-9sb3l","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(_:in:fillStyle:)-9sb3l","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"fillStyle"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier","text":"FillStyle"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"background(_:in:fillStyle:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(activationPoint:)-2fgn6":{"title":"accessibility(activationPoint:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-2fgn6","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-2fgn6","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitleDisplayMode(_:)":{"title":"navigationBarTitleDisplayMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitledisplaymode(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationBarTitleDisplayMode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"NavigationBarItem","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitleDisplayMode(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundPreferenceValue(_:_:)":{"title":"backgroundPreferenceValue(_:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"backgroundPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Key"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"text":"Key","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAdjustableAction(_:)":{"title":"accessibilityAdjustableAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityadjustableaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityAdjustableAction","kind":"identifier"},{"text":"((","kind":"text"},{"preciseIdentifier":"s:7SwiftUI32AccessibilityAdjustmentDirectionO","text":"AccessibilityAdjustmentDirection","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAdjustableAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRepresentation(representation:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrepresentation(representation:)","title":"accessibilityRepresentation(representation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityRepresentation","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"representation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRepresentation(representation:)","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonStyle(_:)-7bm2s":{"title":"buttonStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7bm2s","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7bm2s","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(_:for:)":{"title":"toolbar(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"ToolbarPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV"},{"text":"...) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/modifier(_:)":{"title":"modifier(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/modifier(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/modifier(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/task(id:priority:_:)":{"title":"task(id:priority:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/task(id:priority:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"text":", () ","kind":"text"},{"kind":"keyword","text":"async"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(id:priority:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1":{"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-8n9w1","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/headerProminence(_:)":{"title":"headerProminence(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/headerprominence(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"headerProminence","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10ProminenceO","kind":"typeIdentifier","text":"Prominence"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/headerProminence(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlayPreferenceValue(_:_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlayPreferenceValue","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Key"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Key","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"kind":"typeIdentifier","text":"Key"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:_:)","kind":"symbol","abstract":[],"title":"overlayPreferenceValue(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disableAutocorrection(_:)":{"deprecated":true,"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"disableAutocorrection","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"disableAutocorrection(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disableautocorrection(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disableAutocorrection(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/saturation(_:)":{"title":"saturation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/saturation(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"saturation","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/saturation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textScale(_:isEnabled:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"textScale"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":"."},{"text":"Scale","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV5ScaleV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"textScale(_:isEnabled:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textscale(_:isenabled:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textScale(_:isEnabled:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scenePadding(_:)":{"title":"scenePadding(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"scenePadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"kind":"text","text":"."},{"text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:_:for:)-txh9":{"title":"contentMargins(_:_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-txh9","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentMargins","kind":"identifier"},{"kind":"text","text":"("},{"text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"kind":"text","text":", "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContentMarginPlacement","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-txh9","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-34tbo":{"kind":"symbol","title":"searchable(text:editableTokens:placement:prompt:token:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sy","text":"StringProtocol"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) -> some "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-34tbo","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-34tbo"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewLayout(_:)":{"title":"previewLayout(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewlayout(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"previewLayout"},{"kind":"text","text":"("},{"text":"PreviewLayout","preciseIdentifier":"s:21DeveloperToolsSupport13PreviewLayoutO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewLayout(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-z4fn":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-z4fn","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-z4fn","title":"alert(_:isPresented:actions:)","role":"symbol","abstract":[],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:alignment:)":{"title":"overlay(_:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"overlay","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Overlay","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Overlay"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:alignment:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(_:action:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:action:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"text":"KeyEquivalent","preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"onKeyPress(_:action:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:action:)","type":"topic","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/monospacedDigit()":{"title":"monospacedDigit()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/monospaceddigit()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"monospacedDigit","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospacedDigit()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarHidden(_:)":{"title":"navigationBarHidden(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarhidden(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarHidden"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarHidden(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-7a5jb":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-7a5jb","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"EntryModel"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":"], ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"accessibilityRotor(_:entries:entryLabel:)","role":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-7a5jb"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAlwaysIncludesPunctuation(_:)":{"title":"speechAlwaysIncludesPunctuation(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechalwaysincludespunctuation(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"speechAlwaysIncludesPunctuation","kind":"identifier"},{"kind":"text","text":"("},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAlwaysIncludesPunctuation(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:ignoresSafeAreaEdges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:ignoressafeareaedges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:ignoresSafeAreaEdges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"overlay","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"overlay(_:ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/pickerStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/pickerstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/pickerStyle(_:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"pickerStyle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"pickerStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-71jcy":{"title":"alert(_:isPresented:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-71jcy","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"A","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-71jcy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(leading:trailing:)":{"title":"navigationBarItems(leading:trailing:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:trailing:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarItems","kind":"identifier"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"leading","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"trailing","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:trailing:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-9neej":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-9neej","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-9neej","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/coordinateSpace(_:)":{"title":"coordinateSpace(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"coordinateSpace","kind":"identifier"},{"kind":"text","text":"("},{"text":"NamedCoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20NamedCoordinateSpaceV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHeading(_:)":{"title":"accessibilityHeading(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityheading(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityHeading","kind":"identifier"},{"text":"(","kind":"text"},{"text":"AccessibilityHeadingLevel","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25AccessibilityHeadingLevelO"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHeading(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaInset(edge:alignment:spacing:content:)-9xmw":{"title":"safeAreaInset(edge:alignment:spacing:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareainset(edge:alignment:spacing:content:)-9xmw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"safeAreaInset","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"edge"},{"text":": ","kind":"text"},{"text":"HorizontalEdge","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14HorizontalEdgeO"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"VerticalAlignment","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"spacing","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaInset(edge:alignment:spacing:content:)-9xmw","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onHover(perform:)":{"title":"onHover(perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onhover(perform:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onHover","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onHover(perform:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentTransition(_:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentTransition(_:)","type":"topic","kind":"symbol","abstract":[],"title":"contentTransition(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentTransition","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17ContentTransitionV","kind":"typeIdentifier","text":"ContentTransition"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contenttransition(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tint(_:)-5usev":{"title":"tint(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tint(_:)-5usev","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tint","kind":"identifier"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tint(_:)-5usev","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/font(_:)":{"title":"font(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/font(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"font"},{"text":"(","kind":"text"},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/font(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tabViewStyle(_:)":{"title":"tabViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tabviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"tabViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9fwt1","type":"topic","abstract":[],"title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": some "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) -> some "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlayPreferenceValue(_:alignment:_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"overlayPreferenceValue"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"K"},{"kind":"text","text":", "},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Value"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlayPreferenceValue(_:alignment:_:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlaypreferencevalue(_:alignment:_:)","kind":"symbol","title":"overlayPreferenceValue(_:alignment:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/interactiveDismissDisabled(_:)":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactiveDismissDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/interactivedismissdisabled(_:)","title":"interactiveDismissDisabled(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"interactiveDismissDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:for:)":{"title":"contentMargins(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contentMargins"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContentMarginPlacement","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellColumns(_:)":{"title":"gridCellColumns(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellcolumns(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gridCellColumns","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellColumns(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformAnchorPreference(key:value:transform:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformAnchorPreference(key:value:transform:)","abstract":[],"type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformAnchorPreference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"K"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":">."},{"text":"Source","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"transform"},{"kind":"text","text":": ("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI6AnchorV","kind":"typeIdentifier","text":"Anchor"},{"text":"<","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformanchorpreference(key:value:transform:)","title":"transformAnchorPreference(key:value:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-4o2oy":{"title":"navigationBarTitle(_:displayMode:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-4o2oy","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationBarTitle","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"displayMode","kind":"externalParam"},{"kind":"text","text":": "},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier","text":"TitleDisplayMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-4o2oy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewContext(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewContext(_:)","abstract":[],"kind":"symbol","title":"previewContext(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewcontext(_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"previewContext","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(label:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(label:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"text":"label","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(label:)","kind":"symbol","title":"accessibility(label:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutDirectionBehavior(_:)":{"title":"layoutDirectionBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutdirectionbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"layoutDirectionBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23LayoutDirectionBehaviorO","kind":"typeIdentifier","text":"LayoutDirectionBehavior"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutDirectionBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-67rn6":{"title":"fileDialogMessage(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-67rn6","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogMessage","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-67rn6","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrag(_:)":{"title":"onDrag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onDrag"},{"text":"(() -> ","kind":"text"},{"text":"NSItemProvider","preciseIdentifier":"c:objc(cs)NSItemProvider","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sheet(item:onDismiss:content:)":{"title":"sheet(item:onDismiss:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(item:ondismiss:content:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sheet"},{"text":"<","kind":"text"},{"text":"Item","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"text":"item","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"text":": (() -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(item:onDismiss:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(alignment:content:)":{"title":"background(alignment:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(alignment:content:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"background","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier","text":"Alignment"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(alignment:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/controlSize(_:)":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/controlSize(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/controlsize(_:)","type":"topic","title":"controlSize(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"controlSize"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI11ControlSizeO","text":"ControlSize","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundColor(_:)":{"title":"foregroundColor(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundcolor(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundColor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV","text":"Color"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundColor(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDragIndicator(_:)":{"title":"presentationDragIndicator(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdragindicator(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationDragIndicator","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDragIndicator(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-8bw3q":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-8bw3q","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-8bw3q"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(_:trigger:condition:)":{"title":"sensoryFeedback(_:trigger:condition:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(_:trigger:condition:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sensoryFeedback","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"SensoryFeedback","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"condition","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(_:trigger:condition:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchScopes(_:scopes:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchscopes(_:scopes:)","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchScopes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"scopes","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","title":"searchScopes(_:scopes:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchScopes(_:scopes:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)":{"title":"frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"frame"},{"text":"(","kind":"text"},{"text":"minWidth","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"idealWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"maxWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"text":"?, ","kind":"text"},{"text":"minHeight","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"?, ","kind":"text"},{"text":"idealHeight","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"maxHeight"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/matchedGeometryEffect(id:in:properties:anchor:isSource:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/matchedGeometryEffect(id:in:properties:anchor:isSource:)","abstract":[],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/matchedgeometryeffect(id:in:properties:anchor:issource:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"matchedGeometryEffect","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ID"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"in"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Namespace","preciseIdentifier":"s:7SwiftUI9NamespaceV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV"},{"kind":"text","text":", "},{"text":"properties","kind":"externalParam"},{"kind":"text","text":": "},{"text":"MatchedGeometryProperties","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI25MatchedGeometryPropertiesV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isSource"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"type":"topic","title":"matchedGeometryEffect(id:in:properties:anchor:isSource:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneValue(_:_:)-1qpp3":{"title":"focusedSceneValue(_:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-1qpp3","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedSceneValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"text":"FocusedValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"?>, ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-1qpp3","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/draggable(_:preview:)":{"abstract":[],"title":"draggable(_:preview:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:preview:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"draggable"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(() -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:preview:)","kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/truncationMode(_:)":{"title":"truncationMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/truncationmode(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"truncationMode","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV14TruncationModeO","kind":"typeIdentifier","text":"TruncationMode"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/truncationMode(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-7adx6":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7adx6","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7adx6","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTargetLayout(isEnabled:)":{"title":"scrollTargetLayout(isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetlayout(isenabled:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scrollTargetLayout","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetLayout(isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/clipped(antialiased:)":{"title":"clipped(antialiased:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/clipped(antialiased:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"clipped","kind":"identifier"},{"kind":"text","text":"("},{"text":"antialiased","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipped(antialiased:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/popover(item:attachmentAnchor:arrowEdge:content:)":{"title":"popover(item:attachmentAnchor:arrowEdge:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/popover(item:attachmentanchor:arrowedge:content:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"popover","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"item","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"attachmentAnchor","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO","kind":"typeIdentifier","text":"PopoverAttachmentAnchor"},{"text":", ","kind":"text"},{"text":"arrowEdge","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(item:attachmentAnchor:arrowEdge:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedObject(_:)-1g0dd":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-1g0dd","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"focusedObject(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-1g0dd","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-6r70h":{"title":"accessibilityInputLabels(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-6r70h","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityInputLabels","kind":"identifier"},{"kind":"text","text":"(["},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-6r70h","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/itemProvider(_:)":{"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/itemProvider(_:)","abstract":[],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"itemProvider","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sq","text":"Optional","kind":"typeIdentifier"},{"text":"<() -> ","kind":"text"},{"preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider","kind":"typeIdentifier"},{"text":"?>) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"itemProvider(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/itemprovider(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(_:phases:action:)":{"title":"onKeyPress(_:phases:action:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(_:phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onKeyPress","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","text":"KeyEquivalent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier","text":"KeyPress"},{"kind":"text","text":") -> "},{"text":"KeyPress","preciseIdentifier":"s:7SwiftUI8KeyPressV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO","text":"Result","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(_:phases:action:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultScrollAnchor(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultscrollanchor(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"defaultScrollAnchor","kind":"identifier"},{"kind":"text","text":"("},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultScrollAnchor(_:)","kind":"symbol","title":"defaultScrollAnchor(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-7gjj7":{"title":"fileDialogConfirmationLabel(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-7gjj7","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogConfirmationLabel"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-7gjj7","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:textRanges:)-3czt7":{"title":"accessibilityRotor(_:textRanges:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:textranges:)-3czt7","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"textRanges"},{"text":": [","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS5IndexV","text":"Index"},{"text":">]) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:textRanges:)-3czt7","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechSpellsOutCharacters(_:)":{"title":"speechSpellsOutCharacters(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechspellsoutcharacters(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"speechSpellsOutCharacters"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechSpellsOutCharacters(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:file:onCompletion:onCancellation:)":{"title":"fileMover(isPresented:file:onCompletion:onCancellation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:oncancellation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"file"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier","text":"Result"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:onCancellation:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotorEntry(id:in:)":{"title":"accessibilityRotorEntry(id:in:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotorentry(id:in:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotorEntry","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"id","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ID","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","kind":"typeIdentifier","text":"ID"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotorEntry(id:in:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerBackground(_:for:)":{"title":"containerBackground(_:for:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(_:for:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"kind":"text","text":": "},{"text":"ContainerBackgroundPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(_:for:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineSpacing(_:)":{"title":"lineSpacing(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linespacing(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lineSpacing","kind":"identifier"},{"kind":"text","text":"("},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineSpacing(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:_:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:_:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"foregroundStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S1","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"S2"},{"kind":"text","text":", "},{"text":"S3","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S2"},{"kind":"text","text":", "},{"text":"S3","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"foregroundStyle(_:_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutValue(key:value:)":{"title":"layoutValue(key:value:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutvalue(key:value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"layoutValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutValue(key:value:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/submitScope(_:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/submitScope(_:)","type":"topic","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/submitscope(_:)","title":"submitScope(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"submitScope"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-67lnp":{"title":"searchable(text:isPresented:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-67lnp","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-67lnp","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffect(_:options:value:)":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffect(_:options:value:)","title":"symbolEffect(_:options:value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"symbolEffect"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"U","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"text":"SymbolEffectOptions","preciseIdentifier":"s:7Symbols19SymbolEffectOptionsV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": "},{"text":"U","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffect(_:options:value:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj","title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-5drgj"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-7pleq":{"title":"fileExporterFilenameLabel(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-7pleq","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-7pleq","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/multilineTextAlignment(_:)":{"title":"multilineTextAlignment(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/multilinetextalignment(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multilineTextAlignment"},{"kind":"text","text":"("},{"text":"TextAlignment","preciseIdentifier":"s:7SwiftUI13TextAlignmentO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/multilineTextAlignment(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx":{"title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"document","kind":"externalParam"},{"kind":"text","text":": "},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"defaultFilename"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"text":"<","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":", ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-8tupx","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityFocused(_:)":{"title":"accessibilityFocused(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityFocused(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityfocused(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityFocused","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV","text":"AccessibilityFocusState"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23AccessibilityFocusStateV7BindingV","text":"Binding"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryLabel:)-4v9g8":{"title":"accessibilityRotor(_:entries:entryLabel:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entrylabel:)-4v9g8","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"L"},{"kind":"text","text":", "},{"text":"EntryModel","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"L"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"entryLabel"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryLabel:)-4v9g8","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al":{"title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:message:)-2v6al","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerBackground(for:alignment:content:)":{"title":"containerBackground(for:alignment:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerbackground(for:alignment:content:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"containerBackground","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"for"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28ContainerBackgroundPlacementV","kind":"typeIdentifier","text":"ContainerBackgroundPlacement"},{"kind":"text","text":", "},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerBackground(for:alignment:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSpacing(_:)-71o7f":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-71o7f","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listSectionSpacing","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"listSectionSpacing(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-71o7f","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/task(priority:_:)":{"title":"task(priority:_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/task(priority:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"task","kind":"identifier"},{"kind":"text","text":"("},{"text":"priority","kind":"externalParam"},{"kind":"text","text":": "},{"text":"TaskPriority","kind":"typeIdentifier","preciseIdentifier":"s:ScP"},{"kind":"text","text":", () "},{"text":"async","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/task(priority:_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/luminanceToAlpha()":{"title":"luminanceToAlpha()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/luminancetoalpha()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"luminanceToAlpha"},{"kind":"text","text":"() -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/luminanceToAlpha()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw":{"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-6t3gw","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityShowsLargeContentViewer()":{"title":"accessibilityShowsLargeContentViewer()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityShowsLargeContentViewer","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchCompletion(_:)-95mzh":{"title":"searchCompletion(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-95mzh","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-95mzh","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspector(isPresented:content:)":{"title":"inspector(isPresented:content:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspector(ispresented:content:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inspector"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspector(isPresented:content:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCompactAdaptation(horizontal:vertical:)":{"title":"presentationCompactAdaptation(horizontal:vertical:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcompactadaptation(horizontal:vertical:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"presentationCompactAdaptation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"horizontal"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","text":"PresentationAdaptation"},{"text":", ","kind":"text"},{"text":"vertical","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI22PresentationAdaptationV","text":"PresentationAdaptation","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCompactAdaptation(horizontal:vertical:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textEditorStyle(_:)":{"title":"textEditorStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/texteditorstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"textEditorStyle","kind":"identifier"},{"text":"(some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15TextEditorStyleP","text":"TextEditorStyle","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textEditorStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarTitleDisplayMode(_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbarTitleDisplayMode","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"ToolbarTitleDisplayMode","preciseIdentifier":"s:7SwiftUI23ToolbarTitleDisplayModeV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitledisplaymode(_:)","kind":"symbol","title":"toolbarTitleDisplayMode(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleDisplayMode(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gesture(_:including:)":{"title":"gesture(_:including:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gesture(_:including:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"gesture","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"including","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV","text":"GestureMask"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gesture(_:including:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-6oggf":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-6oggf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-6oggf","role":"symbol","type":"topic","title":"onDrop(of:isTargeted:perform:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"isTargeted"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityIdentifier(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityidentifier(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityIdentifier(_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityIdentifier","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"type":"topic","title":"accessibilityIdentifier(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fixedSize()":{"title":"fixedSize()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fixedSize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-9e770":{"title":"searchable(text:placement:prompt:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-9e770","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-9e770","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:)-8hgvb":{"title":"safeAreaPadding(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:)-8hgvb","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"safeAreaPadding"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier","text":"EdgeInsets"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:)-8hgvb","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineLimit(_:reservesSpace:)":{"title":"lineLimit(_:reservesSpace:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:reservesspace:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lineLimit"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"reservesSpace"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:reservesSpace:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/coordinateSpace(name:)":{"abstract":[],"type":"topic","kind":"symbol","title":"coordinateSpace(name:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/coordinateSpace(name:)","deprecated":true,"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"coordinateSpace","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"name","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coordinatespace(name:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolEffectsRemoved(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolEffectsRemoved(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symboleffectsremoved(_:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"symbolEffectsRemoved"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"title":"symbolEffectsRemoved(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityScrollAction(_:)":{"title":"accessibilityScrollAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityscrollaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityScrollAction","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityScrollAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-1en1":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"help","kind":"identifier"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-1en1","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-1en1","type":"topic","title":"help(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:)-1p9c8":{"title":"alert(_:isPresented:actions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:)-1p9c8","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:)-1p9c8","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityZoomAction(_:)":{"title":"accessibilityZoomAction(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityzoomaction(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityZoomAction","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI30AccessibilityZoomGestureActionV","text":"AccessibilityZoomGestureAction"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityZoomAction(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-81vs3":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-81vs3","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"kind":"externalParam","text":"isTargeted"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">?, "},{"kind":"externalParam","text":"perform"},{"text":": ([","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"text":"], ","kind":"text"},{"text":"CGPoint","preciseIdentifier":"c:@S@CGPoint","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","title":"onDrop(of:isTargeted:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-81vs3","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environment(_:)":{"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:)","title":"environment(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/popover(isPresented:attachmentAnchor:arrowEdge:content:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/popover(ispresented:attachmentanchor:arrowedge:content:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/popover(isPresented:attachmentAnchor:arrowEdge:content:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"popover"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"attachmentAnchor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI23PopoverAttachmentAnchorO","text":"PopoverAttachmentAnchor","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"arrowEdge"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","kind":"typeIdentifier","text":"Edge"},{"text":", ","kind":"text"},{"text":"content","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"popover(isPresented:attachmentAnchor:arrowEdge:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowedDynamicRange(_:)":{"title":"allowedDynamicRange(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alloweddynamicrange(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowedDynamicRange","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ImageV12DynamicRangeV","text":"DynamicRange","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowedDynamicRange(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd":{"title":"fileExporter(isPresented:documents:contentType:onCompletion:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"documents","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"contentType","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCompletion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<["},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":"], ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentType:onCompletion:)-1twyd","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:)-2tvbb":{"title":"navigationBarTitle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:)-2tvbb","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:)-2tvbb","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li":{"abstract":[],"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"document","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"D"},{"text":"?, ","kind":"text"},{"text":"contentTypes","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"defaultFilename"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"onCompletion","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":">) -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)-o4li","kind":"symbol","title":"fileExporter(isPresented:document:contentTypes:defaultFilename:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarBackground(_:for:)-318bv":{"abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarBackground(_:for:)-318bv","kind":"symbol","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarbackground(_:for:)-318bv","title":"toolbarBackground(_:for:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"toolbarBackground","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier","text":"Visibility"},{"text":", ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement"},{"kind":"text","text":"...) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/italic(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/italic(_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"italic","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"title":"italic(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/italic(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listSectionSpacing(_:)-1297l":{"title":"listSectionSpacing(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listsectionspacing(_:)-1297l","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"listSectionSpacing","kind":"identifier"},{"kind":"text","text":"("},{"text":"ListSectionSpacing","preciseIdentifier":"s:7SwiftUI18ListSectionSpacingV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listSectionSpacing(_:)-1297l","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/defaultAppStorage(_:)":{"title":"defaultAppStorage(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/defaultappstorage(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"defaultAppStorage"},{"kind":"text","text":"("},{"text":"UserDefaults","preciseIdentifier":"c:objc(cs)NSUserDefaults","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/defaultAppStorage(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonRepeatBehavior(_:)":{"title":"buttonRepeatBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonrepeatbehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"buttonRepeatBehavior","kind":"identifier"},{"kind":"text","text":"("},{"text":"ButtonRepeatBehavior","preciseIdentifier":"s:7SwiftUI20ButtonRepeatBehaviorV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonRepeatBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a":{"title":"searchable(text:tokens:suggestedTokens:placement:prompt:token:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:placement:prompt:token:)-11k2a","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layerEffect(_:maxSampleOffset:isEnabled:)":{"title":"layerEffect(_:maxSampleOffset:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layereffect(_:maxsampleoffset:isenabled:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"layerEffect"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI6ShaderV","kind":"typeIdentifier","text":"Shader"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSampleOffset"},{"kind":"text","text":": "},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layerEffect(_:maxSampleOffset:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focused(_:equals:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focused(_:equals:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focused(_:equals:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focused","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10FocusStateV","text":"FocusState","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI10FocusStateV7BindingV"},{"text":", ","kind":"text"},{"text":"equals","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"focused(_:equals:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-99pj5":{"title":"dialogSuppressionToggle(_:isSuppressed:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-99pj5","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dialogSuppressionToggle","kind":"identifier"},{"kind":"text","text":"("},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isSuppressed","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-99pj5","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/progressViewStyle(_:)":{"title":"progressViewStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/progressviewstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"progressViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/progressViewStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowBackground(_:)":{"title":"listRowBackground(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowbackground(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowBackground"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowBackground(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-3cq7s","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"EntryModel"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"text":": [","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":"], ","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPath","preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":">, "},{"text":"entryLabel","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","text":"KeyPath","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"EntryModel"},{"text":", ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"accessibilityRotor(_:entries:entryID:entryLabel:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontDesign(_:)":{"title":"fontDesign(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontdesign(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fontDesign","kind":"identifier"},{"kind":"text","text":"("},{"text":"Font","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4FontV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV6DesignO","kind":"typeIdentifier","text":"Design"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontDesign(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/interactionActivityTrackingTag(_:)":{"title":"interactionActivityTrackingTag(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/interactionactivitytrackingtag(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"interactionActivityTrackingTag"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/interactionActivityTrackingTag(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/labeledContentStyle(_:)":{"title":"labeledContentStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/labeledcontentstyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"labeledContentStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/labeledContentStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tabItem(_:)":{"title":"tabItem(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tabitem(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"tabItem"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"text":">(() -> ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tabItem(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/blendMode(_:)":{"title":"blendMode(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/blendmode(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"blendMode"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9BlendModeO","text":"BlendMode"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blendMode(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/monospaced(_:)":{"title":"monospaced(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/monospaced(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"monospaced","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/monospaced(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/privacySensitive(_:)":{"title":"privacySensitive(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/privacysensitive(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"privacySensitive"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/privacySensitive(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dynamicTypeSize(_:)-8zqiy":{"title":"dynamicTypeSize(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-8zqiy","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dynamicTypeSize","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI15DynamicTypeSizeO","kind":"typeIdentifier","text":"DynamicTypeSize"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-8zqiy","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/phaseAnimator(_:content:animation:)":{"title":"phaseAnimator(_:content:animation:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:content:animation:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"phaseAnimator"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Phase"},{"kind":"text","text":">(some "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"content","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"animation","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Animation","preciseIdentifier":"s:7SwiftUI9AnimationV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:content:animation:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerShape(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"containerShape","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containershape(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerShape(_:)","title":"containerShape(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-5st6w":{"title":"badge(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-5st6w","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"badge","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-5st6w","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrag(_:preview:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrag(_:preview:)","title":"onDrag(_:preview:)","kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrag(_:preview:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrag","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(() -> ","kind":"text"},{"text":"NSItemProvider","kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(hidden:)":{"title":"accessibility(hidden:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hidden:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"hidden"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(hidden:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHidden(_:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHidden"},{"kind":"text","text":"("},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhidden(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHidden(_:)","title":"accessibilityHidden(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRespondsToUserInteraction(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrespondstouserinteraction(_:)","title":"accessibilityRespondsToUserInteraction(_:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityRespondsToUserInteraction"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRespondsToUserInteraction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneObject(_:)-8fmby":{"abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedSceneObject"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"title":"focusedSceneObject(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneObject(_:)-8fmby","kind":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedsceneobject(_:)-8fmby"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(removeTraits:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(removetraits:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"kind":"text","text":"("},{"kind":"externalParam","text":"removeTraits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"deprecated":true,"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(removeTraits:)","kind":"symbol","title":"accessibility(removeTraits:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporterFilenameLabel(_:)-8t5re":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileExporterFilenameLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporterfilenamelabel(_:)-8t5re","kind":"symbol","abstract":[],"title":"fileExporterFilenameLabel(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporterFilenameLabel(_:)-8t5re"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorScheme(_:)":{"title":"colorScheme(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/colorscheme(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"colorScheme","kind":"identifier"},{"text":"(","kind":"text"},{"text":"ColorScheme","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorScheme(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(_:_:)":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"("},{"text":"AccessibilityActionKind","preciseIdentifier":"s:7SwiftUI23AccessibilityActionKindV","kind":"typeIdentifier"},{"text":", () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(_:_:)","kind":"symbol","title":"accessibilityAction(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(_:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchCompletion(_:)-9im0b":{"title":"searchCompletion(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchcompletion(_:)-9im0b","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchCompletion","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchCompletion(_:)-9im0b","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-3x90l":{"title":"accessibilityCustomContent(_:_:importance:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-3x90l","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"importance","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"AXCustomContent","preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-3x90l","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(_:in:fillStyle:)":{"title":"overlay(_:in:fillStyle:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(_:in:fillstyle:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"fillStyle","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9FillStyleV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(_:in:fillStyle:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollContentBackground(_:)":{"kind":"symbol","role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollContentBackground"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"scrollContentBackground(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollcontentbackground(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollContentBackground(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/grayscale(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"grayscale"},{"kind":"text","text":"("},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/grayscale(_:)","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/grayscale(_:)","type":"topic","role":"symbol","abstract":[],"title":"grayscale(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/geometryGroup()":{"title":"geometryGroup()","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/geometrygroup()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"geometryGroup","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/geometryGroup()","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/inspectorColumnWidth(min:ideal:max:)":{"title":"inspectorColumnWidth(min:ideal:max:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/inspectorcolumnwidth(min:ideal:max:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inspectorColumnWidth","kind":"identifier"},{"text":"(","kind":"text"},{"text":"min","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"ideal","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"max"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/inspectorColumnWidth(min:ideal:max:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/springLoadingBehavior(_:)":{"title":"springLoadingBehavior(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/springloadingbehavior(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"springLoadingBehavior"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI21SpringLoadingBehaviorV","text":"SpringLoadingBehavior"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/springLoadingBehavior(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaledToFill()":{"role":"symbol","title":"scaledToFill()","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofill()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scaledToFill","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFill()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tableStyle(_:)":{"title":"tableStyle(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tablestyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"tableStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tableStyle(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/handlesExternalEvents(preferring:allowing:)":{"title":"handlesExternalEvents(preferring:allowing:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/handlesexternalevents(preferring:allowing:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"handlesExternalEvents","kind":"identifier"},{"kind":"text","text":"("},{"text":"preferring","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"allowing","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sh","text":"Set","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/handlesExternalEvents(preferring:allowing:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)-1vfc1","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1","title":"confirmationDialog(_:isPresented:titleVisibility:presenting:actions:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"confirmationDialog","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO","text":"Visibility"},{"text":", ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-752ik":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-752ik","role":"symbol","title":"accessibilityAction(named:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-752ik","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityAction"},{"text":"(","kind":"text"},{"text":"named","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/userActivity(_:element:_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/useractivity(_:element:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/userActivity(_:element:_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"userActivity"},{"kind":"text","text":"<"},{"text":"P","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"element","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"text":"?, (","kind":"text"},{"text":"P","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"kind":"text","text":") -> ()) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"userActivity(_:element:_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(value:)":{"title":"accessibility(value:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(value:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(value:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fixedSize(horizontal:vertical:)":{"title":"fixedSize(horizontal:vertical:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fixedsize(horizontal:vertical:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fixedSize","kind":"identifier"},{"text":"(","kind":"text"},{"text":"horizontal","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"vertical","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fixedSize(horizontal:vertical:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)","title":"fileImporter(isPresented:allowedContentTypes:allowsMultipleSelection:onCompletion:onCancellation:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileImporter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"allowedContentTypes"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","kind":"typeIdentifier","text":"UTType"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"allowsMultipleSelection"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"onCancellation","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dialogSuppressionToggle(_:isSuppressed:)-2lazw":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dialogsuppressiontoggle(_:issuppressed:)-2lazw","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dialogSuppressionToggle(_:isSuppressed:)-2lazw","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dialogSuppressionToggle"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isSuppressed"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"dialogSuppressionToggle(_:isSuppressed:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onPreferenceChange(_:perform:)":{"title":"onPreferenceChange(_:perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onpreferencechange(_:perform:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onPreferenceChange","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onPreferenceChange(_:perform:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"foregroundStyle"},{"kind":"text","text":"<"},{"text":"S1","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"S2","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S1"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S2"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"foregroundStyle(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"confirmationDialog"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"titleVisibility","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-5osrs","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(removing:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"toolbar","kind":"identifier"},{"text":"(","kind":"text"},{"text":"removing","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ToolbarDefaultItemKindV","text":"ToolbarDefaultItemKind"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"toolbar(removing:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(removing:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(removing:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(inputLabels:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"inputLabels"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","deprecated":true,"title":"accessibility(inputLabels:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(inputlabels:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(inputLabels:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fullScreenCover(item:onDismiss:content:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"fullScreenCover"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"item"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"kind":"externalParam","text":"onDismiss"},{"kind":"text","text":": (() -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?, ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Content"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fullScreenCover(item:onDismiss:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fullscreencover(item:ondismiss:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fullScreenCover(item:onDismiss:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/cornerRadius(_:antialiased:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"cornerRadius"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"antialiased"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"cornerRadius(_:antialiased:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/cornerradius(_:antialiased:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/cornerRadius(_:antialiased:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-5gd7f"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/rotationEffect(_:anchor:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"rotationEffect"},{"text":"(","kind":"text"},{"text":"Angle","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AngleV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"anchor"},{"text":": ","kind":"text"},{"text":"UnitPoint","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"rotationEffect(_:anchor:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/rotationeffect(_:anchor:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotationEffect(_:anchor:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAdjustedPitch(_:)":{"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAdjustedPitch(_:)","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechadjustedpitch(_:)","title":"speechAdjustedPitch(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"speechAdjustedPitch","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-8jius":{"abstract":[],"title":"searchable(text:editableTokens:placement:prompt:token:)","kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-8jius","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-8jius","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"editableTokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"text":">) -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-xox2":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeSelectEquivalent"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"typeSelectEquivalent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-xox2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-xox2"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":">, ","kind":"text"},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-v6go"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/invalidatableContent(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"invalidatableContent","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"invalidatableContent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/invalidatablecontent(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/invalidatableContent(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-6x0q":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"searchable(text:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-6x0q","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-6x0q"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/strikethrough(_:pattern:color:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"strikethrough"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV","kind":"typeIdentifier","text":"LineStyle"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","text":"Pattern"},{"kind":"text","text":", "},{"kind":"externalParam","text":"color"},{"text":": ","kind":"text"},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"strikethrough(_:pattern:color:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/strikethrough(_:pattern:color:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/strikethrough(_:pattern:color:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-11ys1":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationDocument"},{"text":"<","kind":"text"},{"text":"D","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"I"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"D"},{"kind":"text","text":", "},{"kind":"externalParam","text":"preview"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:s5NeverO","text":"Never","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"I"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationDocument(_:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-11ys1","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-11ys1"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityInputLabels(_:)-8ga6r":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityInputLabels"},{"kind":"text","text":"(["},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":"]) -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityInputLabels(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityinputlabels(_:)-8ga6r","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityInputLabels(_:)-8ga6r"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:modifiers:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"keyboardShortcut"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier","text":"KeyEquivalent"},{"text":", ","kind":"text"},{"text":"modifiers","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI14EventModifiersV","text":"EventModifiers"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"keyboardShortcut(_:modifiers:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"items"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"contentTypes"},{"text":": [","kind":"text"},{"text":"UTType","kind":"typeIdentifier","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"onCancellation"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:items:contentTypes:onCompletion:onCancellation:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundPreferenceValue(_:alignment:_:)":{"type":"topic","role":"symbol","title":"backgroundPreferenceValue(_:alignment:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundPreferenceValue(_:alignment:_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"backgroundPreferenceValue"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"K"},{"text":".Type, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"kind":"text","text":": "},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":", (","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundpreferencevalue(_:alignment:_:)","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuIndicator(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"menuIndicator"},{"kind":"text","text":"("},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuIndicator(_:)","abstract":[],"role":"symbol","kind":"symbol","title":"menuIndicator(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menuindicator(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSeparatorTint(_:edges:)":{"kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSeparatorTint(_:edges:)","title":"listRowSeparatorTint(_:edges:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"listRowSeparatorTint","kind":"identifier"},{"kind":"text","text":"("},{"text":"Color","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ColorV"},{"kind":"text","text":"?, "},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"VerticalEdge","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI12VerticalEdgeO3SetV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowseparatortint(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"token","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:tokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:isPresented:placement:prompt:token:)-183xm"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbar(content:)-7wl29":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"toolbar"},{"kind":"text","text":"<"},{"text":"Content","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Content"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"toolbar(content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbar(content:)-7wl29","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbar(content:)-7wl29"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(activationPoint:)-24jl2":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibility","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"activationPoint"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","deprecated":true,"title":"accessibility(activationPoint:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-24jl2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(activationPoint:)-24jl2"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogConfirmationLabel(_:)-4sto5":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogconfirmationlabel(_:)-4sto5","type":"topic","kind":"symbol","title":"fileDialogConfirmationLabel(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogConfirmationLabel","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogConfirmationLabel(_:)-4sto5","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:actions:message:)-py9q":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:actions:message:)-py9q","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:actions:message:)-py9q","type":"topic","title":"alert(_:isPresented:actions:message:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:alignment:)":{"type":"topic","role":"symbol","title":"containerRelativeFrame(_:alignment:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:alignment:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"containerRelativeFrame"},{"kind":"text","text":"("},{"text":"Axis","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO3SetV","text":"Set"},{"kind":"text","text":", "},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:alignment:)","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(action:label:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityAction","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Label"},{"text":">(","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":", "},{"kind":"externalParam","text":"label"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"Label"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"accessibilityAction(action:label:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(action:label:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(action:label:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinuousHover(coordinateSpace:perform:)-6ujjf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onContinuousHover","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"coordinateSpace"},{"text":": some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI23CoordinateSpaceProtocolP","text":"CoordinateSpaceProtocol"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10HoverPhaseO","text":"HoverPhase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"onContinuousHover(coordinateSpace:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-6ujjf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-6ujjf"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollDisabled(_:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollDisabled(_:)","abstract":[],"title":"scrollDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolldisabled(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"scrollDisabled"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-1kuba":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"message"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"M"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1kuba","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1kuba"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewColumnWidth(min:ideal:max:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"kind":"text","text":"("},{"kind":"externalParam","text":"min"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"ideal"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"max"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationSplitViewColumnWidth(min:ideal:max:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(min:ideal:max:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(min:ideal:max:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:files:onCompletion:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:files:onCompletion:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileMover"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"files"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:s6ResultO","text":"Result"},{"kind":"text","text":"<["},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"kind":"text","text":">) -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:files:oncompletion:)","title":"fileMover(isPresented:files:onCompletion:)","kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:isPresented:placement:prompt:)-6slax":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"searchable"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier","text":"Text"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"searchable(text:isPresented:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:ispresented:placement:prompt:)-6slax","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:isPresented:placement:prompt:)-6slax"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/paletteSelectionEffect(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/paletteselectioneffect(_:)","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"paletteSelectionEffect","kind":"identifier"},{"kind":"text","text":"("},{"text":"PaletteSelectionEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22PaletteSelectionEffectV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/paletteSelectionEffect(_:)","kind":"symbol","title":"paletteSelectionEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hoverEffect(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hoverEffect(_:)","title":"hoverEffect(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hovereffect(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hoverEffect","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI11HoverEffectV","text":"HoverEffect","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:isPresented:placement:prompt:token:)-9floz","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) -> some "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","title":"searchable(text:editableTokens:isPresented:placement:prompt:token:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellUnsizedAxes(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"gridCellUnsizedAxes","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","kind":"typeIdentifier","text":"Axis"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"gridCellUnsizedAxes(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellunsizedaxes(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellUnsizedAxes(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-2cbbq":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"navigationTitle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2cbbq","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2cbbq"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/environment(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"environment","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"WritableKeyPath","preciseIdentifier":"s:s15WritableKeyPathC"},{"kind":"text","text":"<"},{"text":"EnvironmentValues","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":">, "},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"environment(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/environment(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/environment(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationCornerRadius(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationcornerradius(_:)","role":"symbol","title":"presentationCornerRadius(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationCornerRadius(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"presentationCornerRadius","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(item:content:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Item"},{"kind":"text","text":">("},{"kind":"externalParam","text":"item"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Item"},{"kind":"text","text":"?>, "},{"kind":"externalParam","text":"content"},{"text":": (","kind":"text"},{"text":"Item","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5AlertV","text":"Alert"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","deprecated":true,"title":"alert(item:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(item:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(item:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/lineLimit(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lineLimit","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"lineLimit(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/linelimit(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/lineLimit(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/underline(_:pattern:color:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/underline(_:pattern:color:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/underline(_:pattern:color:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"underline","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"text":"pattern","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"LineStyle","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV"},{"text":".","kind":"text"},{"text":"Pattern","preciseIdentifier":"s:7SwiftUI4TextV9LineStyleV7PatternV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"color","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"underline(_:pattern:color:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:placement:prompt:token:)-3i3vq":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:placement:prompt:token:)-3i3vq","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:placement:prompt:token:)-3i3vq","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"searchable"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?, ","kind":"text"},{"text":"token","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"title":"searchable(text:tokens:placement:prompt:token:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":", "},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"tokens"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"suggestedTokens"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-1fbry"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTargetBehavior(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTargetBehavior(_:)","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltargetbehavior(_:)","title":"scrollTargetBehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scrollTargetBehavior","kind":"identifier"},{"text":"(some ","kind":"text"},{"text":"ScrollTargetBehavior","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20ScrollTargetBehaviorP"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:)-94ovh":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"padding","kind":"identifier"},{"kind":"text","text":"("},{"text":"EdgeInsets","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:)-94ovh","title":"padding(_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:)-94ovh"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-4ot2g":{"title":"searchable(text:placement:prompt:suggestions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4ot2g","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"placement"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"text":"prompt","kind":"externalParam"},{"kind":"text","text":": "},{"text":"LocalizedStringKey","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4ot2g","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toggleStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"toggleStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"toggleStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/togglestyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toggleStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/padding(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"padding"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":", ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"padding(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/padding(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/padding(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transaction","kind":"identifier"},{"text":"((","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"transaction(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/clipShape(_:style:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"clipShape"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"text":"style","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FillStyle","preciseIdentifier":"s:7SwiftUI9FillStyleV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"clipShape(_:style:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/clipshape(_:style:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/clipShape(_:style:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDisappear(perform:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDisappear(perform:)","abstract":[],"title":"onDisappear(perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondisappear(perform:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDisappear","kind":"identifier"},{"text":"(","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (() -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-7622k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityCustomContent"},{"text":"(","kind":"text"},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"importance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance","text":"Importance"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7622k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7622k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogDefaultDirectory(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogdefaultdirectory(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fileDialogDefaultDirectory"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogDefaultDirectory(_:)","kind":"symbol","title":"fileDialogDefaultDirectory(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:)","kind":"symbol","title":"keyboardShortcut(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"keyboardShortcut","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonBorderShape(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"buttonBorderShape","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"ButtonBorderShape","preciseIdentifier":"s:7SwiftUI17ButtonBorderShapeV"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"buttonBorderShape(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonbordershape(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonBorderShape(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typesettingLanguage(_:isEnabled:)-4ax4k":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typesettingLanguage(_:isEnabled:)-4ax4k","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typesettinglanguage(_:isenabled:)-4ax4k","role":"symbol","title":"typesettingLanguage(_:isEnabled:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"typesettingLanguage","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI19TypesettingLanguageV","kind":"typeIdentifier","text":"TypesettingLanguage"},{"text":", ","kind":"text"},{"text":"isEnabled","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAddTraits(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"accessibilityAddTraits","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"AccessibilityTraits","preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityAddTraits(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaddtraits(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAddTraits(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/offset(x:y:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"offset"},{"text":"(","kind":"text"},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":", "},{"kind":"externalParam","text":"y"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"offset(x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/offset(x:y:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(x:y:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/actionSheet(isPresented:content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"actionSheet","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ActionSheetV","text":"ActionSheet"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"actionSheet(isPresented:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/actionsheet(ispresented:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/actionSheet(isPresented:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/backgroundStyle(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/backgroundstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/backgroundStyle(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"backgroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"backgroundStyle(_:)","role":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/preferredColorScheme(_:)":{"title":"preferredColorScheme(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/preferredcolorscheme(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"preferredColorScheme","kind":"identifier"},{"kind":"text","text":"("},{"text":"ColorScheme","preciseIdentifier":"s:7SwiftUI11ColorSchemeO","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preferredColorScheme(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformPreference(_:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformPreference"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"K"},{"text":">(","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".Type, (","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"K"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"transformPreference(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformpreference(_:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformPreference(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedObject(_:)-6gnqz":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"focusedObject","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"focusedObject(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedobject(_:)-6gnqz","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedObject(_:)-6gnqz"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(sortPriority:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"sortPriority"},{"text":": ","kind":"text"},{"text":"Double","kind":"typeIdentifier","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","deprecated":true,"title":"accessibility(sortPriority:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(sortpriority:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(sortPriority:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusable(_:interactions:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"focusable","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"text":"interactions","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"FocusInteractions","preciseIdentifier":"s:7SwiftUI17FocusInteractionsV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"focusable(_:interactions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusable(_:interactions:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusable(_:interactions:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedValue(_:_:)-7hm2d":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"focusedValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Value","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13FocusedValuesV","text":"FocusedValues"},{"text":", ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"text":"?>, ","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"focusedValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedvalue(_:_:)-7hm2d","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedValue(_:_:)-7hm2d"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:)-2ql2l":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"text":"D","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDocument(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:)-2ql2l","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:)-2ql2l"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(identifier:)":{"title":"accessibility(identifier:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(identifier:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"text":"identifier","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"deprecated":true,"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(identifier:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityHint(_:)-8ro7f":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityHint"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityHint(_:)-8ro7f","abstract":[],"role":"symbol","kind":"symbol","title":"accessibilityHint(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityhint(_:)-8ro7f","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/overlay(alignment:content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"overlay"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"alignment","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV","text":"Alignment"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"overlay(alignment:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/overlay(alignment:content:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/overlay(alignment:content:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchDictationBehavior(_:)":{"role":"symbol","type":"topic","abstract":[],"title":"searchDictationBehavior(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchDictationBehavior(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchDictationBehavior","kind":"identifier"},{"text":"(","kind":"text"},{"text":"TextInputDictationBehavior","preciseIdentifier":"s:7SwiftUI26TextInputDictationBehaviorV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchdictationbehavior(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarRole(_:)":{"abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarRole(_:)","kind":"symbol","title":"toolbarRole(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"toolbarRole"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI11ToolbarRoleV","text":"ToolbarRole","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarrole(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:editableTokens:placement:prompt:token:)-3ns5o":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"editableTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV","text":"Text"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"token"},{"text":": (","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"text":">) -> some ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"searchable(text:editableTokens:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:editabletokens:placement:prompt:token:)-3ns5o","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:editableTokens:placement:prompt:token:)-3ns5o"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinueUserActivity(_:perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinueUserActivity"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSUserActivity","text":"NSUserActivity"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"onContinueUserActivity(_:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinueuseractivity(_:perform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinueUserActivity(_:perform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:suggestions:)-4fef2":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:suggestions:)-4fef2","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"text","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"placement"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV","text":"SearchFieldPlacement"},{"text":", ","kind":"text"},{"text":"prompt","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"suggestions"},{"text":": () -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"deprecated":true,"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:suggestions:)-4fef2","role":"symbol","title":"searchable(text:placement:prompt:suggestions:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(addTraits:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(addtraits:)","type":"topic","title":"accessibility(addTraits:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibility"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"addTraits"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI19AccessibilityTraitsV","text":"AccessibilityTraits","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"deprecated":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(addTraits:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/border(_:width:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"border","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"width"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"border(_:width:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/border(_:width:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/border(_:width:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:message:)-1ky1b":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"M"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier","text":"Binding"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"actions","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"M"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:message:)-1ky1b","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:message:)-1ky1b"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(value:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"transaction","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"value"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","preciseIdentifier":"s:SQ","text":"Equatable"},{"kind":"text","text":", ("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Transaction","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11TransactionV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"transaction(value:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(value:_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(value:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDestination(isPresented:destination:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"navigationDestination","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"destination"},{"text":": () -> ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDestination(isPresented:destination:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdestination(ispresented:destination:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDestination(isPresented:destination:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/drawingGroup(opaque:colorMode:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/drawinggroup(opaque:colormode:)","role":"symbol","title":"drawingGroup(opaque:colorMode:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/drawingGroup(opaque:colorMode:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"drawingGroup","kind":"identifier"},{"kind":"text","text":"("},{"text":"opaque","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"colorMode"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18ColorRenderingModeO","text":"ColorRenderingMode"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hueRotation(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hueRotation","kind":"identifier"},{"kind":"text","text":"("},{"text":"Angle","preciseIdentifier":"s:7SwiftUI5AngleV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"hueRotation(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/huerotation(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hueRotation(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogCustomizationID(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogCustomizationID(_:)","kind":"symbol","title":"fileDialogCustomizationID(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogcustomizationid(_:)","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"fileDialogCustomizationID","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/preference(key:value:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"preference"},{"text":"<","kind":"text"},{"text":"K","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"key","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"kind":"text","text":".Type, "},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Value"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"preference(key:value:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/preference(key:value:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/preference(key:value:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/highPriorityGesture(_:including:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"highPriorityGesture","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"including","kind":"externalParam"},{"kind":"text","text":": "},{"text":"GestureMask","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11GestureMaskV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"highPriorityGesture(_:including:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/highprioritygesture(_:including:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/highPriorityGesture(_:including:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityShowsLargeContentViewer(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityshowslargecontentviewer(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityShowsLargeContentViewer"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">(() -> "},{"kind":"typeIdentifier","text":"V"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityShowsLargeContentViewer(_:)","title":"accessibilityShowsLargeContentViewer(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/buttonStyle(_:)-7q62k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"buttonStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"buttonStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/buttonstyle(_:)-7q62k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/buttonStyle(_:)-7q62k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityTextContentType(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityTextContentType","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI28AccessibilityTextContentTypeV","text":"AccessibilityTextContentType","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityTextContentType(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitytextcontenttype(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityTextContentType(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:error:actions:)":{"title":"alert(isPresented:error:actions:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"A"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"actions"},{"text":": () -> ","kind":"text"},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityAction(named:_:)-3yhkn":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityAction"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"named"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", () -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityAction(named:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(named:_:)-3yhkn","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityAction(named:_:)-3yhkn"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-9pzr0":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"alert","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"isPresented","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"presenting"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"alert(_:isPresented:presenting:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-9pzr0","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-9pzr0"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibility(selectionIdentifier:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibility","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"selectionIdentifier"},{"text":": ","kind":"text"},{"text":"AnyHashable","kind":"typeIdentifier","preciseIdentifier":"s:s11AnyHashableV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","deprecated":true,"title":"accessibility(selectionIdentifier:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(selectionidentifier:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibility(selectionIdentifier:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/hidden()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hidden"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"hidden()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/hidden()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/hidden()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/offset(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/offset(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/offset(_:)","title":"offset(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"offset","kind":"identifier"},{"text":"(","kind":"text"},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","abstract":[],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sensoryFeedback(trigger:_:)":{"title":"sensoryFeedback(trigger:_:)","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sensoryfeedback(trigger:_:)","kind":"symbol","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sensoryFeedback(trigger:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sensoryFeedback"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"trigger","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":", ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"SensoryFeedback","preciseIdentifier":"s:7SwiftUI15SensoryFeedbackV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/anchorPreference(key:value:transform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"anchorPreference","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":", "},{"text":"K","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"key","kind":"externalParam"},{"kind":"text","text":": "},{"text":"K","kind":"typeIdentifier"},{"text":".Type, ","kind":"text"},{"text":"value","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Anchor","preciseIdentifier":"s:7SwiftUI6AnchorV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"A","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"text":"Source","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV6SourceV"},{"kind":"text","text":", "},{"text":"transform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Anchor","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6AnchorV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"A"},{"text":">) -> ","kind":"text"},{"text":"K","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Value","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"anchorPreference(key:value:transform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/anchorpreference(key:value:transform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/anchorPreference(key:value:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/previewDevice(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"previewDevice"},{"kind":"text","text":"("},{"text":"PreviewDevice","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13PreviewDeviceV"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"previewDevice(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/previewdevice(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/previewDevice(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/layoutPriority(_:)":{"title":"layoutPriority(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/layoutPriority(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/layoutpriority(_:)","type":"topic","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"layoutPriority","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/allowsHitTesting(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allowsHitTesting","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"allowsHitTesting(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/allowshittesting(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/allowsHitTesting(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarColorScheme(_:for:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"toolbarColorScheme"},{"kind":"text","text":"("},{"text":"ColorScheme","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI11ColorSchemeO"},{"text":"?, ","kind":"text"},{"text":"for","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16ToolbarPlacementV","text":"ToolbarPlacement"},{"text":"...) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"toolbarColorScheme(_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbarcolorscheme(_:for:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarColorScheme(_:for:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaledToFit()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"scaledToFit","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"scaledToFit()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaledtofit()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaledToFit()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:initial:_:)-6p46k":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onChange"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"initial"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"onChange(of:initial:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-6p46k","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-6p46k"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/ignoresSafeArea(_:edges:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"ignoresSafeArea","kind":"identifier"},{"text":"(","kind":"text"},{"text":"SafeAreaRegions","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15SafeAreaRegionsV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"edges"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"ignoresSafeArea(_:edges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ignoressafearea(_:edges:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/ignoresSafeArea(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/position(x:y:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(x:y:)","role":"symbol","kind":"symbol","abstract":[],"type":"topic","title":"position(x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/position(x:y:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"kind":"text","text":"("},{"text":"x","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLinkedGroup(id:in:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityLinkedGroup","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ID","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"id"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ID"},{"kind":"text","text":", "},{"text":"in","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9NamespaceV","text":"Namespace","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ID","preciseIdentifier":"s:7SwiftUI9NamespaceV2IDV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"accessibilityLinkedGroup(id:in:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylinkedgroup(id:in:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLinkedGroup(id:in:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fontWeight(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"fontWeight"},{"text":"(","kind":"text"},{"text":"Font","preciseIdentifier":"s:7SwiftUI4FontV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4FontV6WeightV","text":"Weight","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fontWeight(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fontweight(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fontWeight(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/textContentType(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"textContentType","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"c:@T@UITextContentType","text":"UITextContentType","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"textContentType(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/textcontenttype(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/textContentType(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/zIndex(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"zIndex","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"zIndex(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/zindex(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/zIndex(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame()":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"frame","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"frame()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-3rtbx":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-3rtbx","role":"symbol","kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-3rtbx","title":"typeSelectEquivalent(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"typeSelectEquivalent"},{"kind":"text","text":"("},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/menuStyle(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"menuStyle"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/menustyle(_:)","type":"topic","kind":"symbol","role":"symbol","abstract":[],"title":"menuStyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/menuStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"text"},{"text":": ","kind":"text"},{"text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"tokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"suggestedTokens","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"C","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"SearchFieldPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"token"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:tokens:suggestedTokens:isPresented:placement:prompt:token:)-4gir7","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:isTargeted:perform:)-7lgd2":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV","text":"UTType","kind":"typeIdentifier"},{"kind":"text","text":"], "},{"text":"isTargeted","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":">?, ","kind":"text"},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": (["},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)NSItemProvider","text":"NSItemProvider"},{"kind":"text","text":"]) -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"onDrop(of:isTargeted:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:istargeted:perform:)-7lgd2","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:isTargeted:perform:)-7lgd2"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onOpenURL(perform:)":{"title":"onOpenURL(perform:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onopenurl(perform:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onOpenURL"},{"kind":"text","text":"("},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"URL","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV"},{"text":") -> ()) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onOpenURL(perform:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDetents(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"presentationDetents","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sh","text":"Set"},{"kind":"text","text":"<"},{"text":"PresentationDetent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"presentationDetents(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformEffect(_:)":{"title":"transformEffect(_:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformeffect(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"transformEffect"},{"kind":"text","text":"("},{"text":"CGAffineTransform","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGAffineTransform"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEffect(_:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogImportsUnresolvedAliases(_:)":{"kind":"symbol","title":"fileDialogImportsUnresolvedAliases(_:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogimportsunresolvedaliases(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogImportsUnresolvedAliases(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogImportsUnresolvedAliases","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityDirectTouch(_:options:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityDirectTouch"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"kind":"externalParam","text":"options"},{"kind":"text","text":": "},{"text":"AccessibilityDirectTouchOptions","preciseIdentifier":"s:7SwiftUI31AccessibilityDirectTouchOptionsV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityDirectTouch(_:options:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitydirecttouch(_:options:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityDirectTouch(_:options:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contextMenu(menuItems:preview:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contextMenu"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":", "},{"text":"P","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"menuItems"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"M"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"P"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"contextMenu(menuItems:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contextmenu(menuitems:preview:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contextMenu(menuItems:preview:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gridCellAnchor(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gridcellanchor(_:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gridCellAnchor(_:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gridCellAnchor","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"gridCellAnchor(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/tracking(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/tracking(_:)","kind":"symbol","title":"tracking(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"tracking","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/tracking(_:)","type":"topic","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(isPresented:error:actions:message:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"alert","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"M"},{"kind":"text","text":">("},{"kind":"externalParam","text":"isPresented"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"error"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":"?, "},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"A","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"alert(isPresented:error:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(ispresented:error:actions:message:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(isPresented:error:actions:message:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityValue(_:)-78lqf":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityValue","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"kind":"text","text":">"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityvalue(_:)-78lqf","kind":"symbol","title":"accessibilityValue(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityValue(_:)-78lqf","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onContinuousHover(coordinateSpace:perform:)-2e5rp":{"title":"onContinuousHover(coordinateSpace:perform:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/oncontinuoushover(coordinatespace:perform:)-2e5rp","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onContinuousHover"},{"text":"(","kind":"text"},{"text":"coordinateSpace","kind":"externalParam"},{"kind":"text","text":": "},{"text":"CoordinateSpace","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15CoordinateSpaceO"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"HoverPhase","preciseIdentifier":"s:7SwiftUI10HoverPhaseO"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"deprecated":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onContinuousHover(coordinateSpace:perform:)-2e5rp"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"fileExporter","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"documents"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentTypes"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"UTType","preciseIdentifier":"s:22UniformTypeIdentifiers6UTTypeV"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"onCompletion"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:s6ResultO","text":"Result","kind":"typeIdentifier"},{"text":"<[","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"], "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onCancellation"},{"kind":"text","text":": () -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileExporter(isPresented:documents:contentTypes:onCompletion:onCancellation:)-6xv6m"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onLongPressGesture(minimumDuration:perform:onPressingChanged:)":{"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"onLongPressGesture","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"minimumDuration"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"kind":"text","text":", "},{"text":"perform","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onPressingChanged"},{"text":": ((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onlongpressgesture(minimumduration:perform:onpressingchanged:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onLongPressGesture(minimumDuration:perform:onPressingChanged:)","title":"onLongPressGesture(minimumDuration:perform:onPressingChanged:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onChange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"perform"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"V"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"onChange(of:perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:perform:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogURLEnabled(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"fileDialogURLEnabled","kind":"identifier"},{"kind":"text","text":"("},{"text":"Predicate","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","text":"URL","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"fileDialogURLEnabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogurlenabled(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogURLEnabled(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/flipsForRightToLeftLayoutDirection(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/flipsForRightToLeftLayoutDirection(_:)","kind":"symbol","title":"flipsForRightToLeftLayoutDirection(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/flipsforrighttoleftlayoutdirection(_:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flipsForRightToLeftLayoutDirection"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/statusBar(hidden:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusBar"},{"kind":"text","text":"("},{"text":"hidden","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"statusBar(hidden:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/statusbar(hidden:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBar(hidden:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationSplitViewColumnWidth(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationSplitViewColumnWidth"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"navigationSplitViewColumnWidth(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationsplitviewcolumnwidth(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationSplitViewColumnWidth(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onKeyPress(characters:phases:action:)":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onKeyPress(characters:phases:action:)","title":"onKeyPress(characters:phases:action:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"onKeyPress"},{"kind":"text","text":"("},{"kind":"externalParam","text":"characters"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CharacterSet","preciseIdentifier":"s:10Foundation12CharacterSetV"},{"kind":"text","text":", "},{"text":"phases","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7SwiftUI8KeyPressV6PhasesV","text":"Phases","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"action","kind":"externalParam"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI8KeyPressV","text":"KeyPress","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"KeyPress","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV"},{"kind":"text","text":"."},{"text":"Result","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI8KeyPressV6ResultO"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onkeypress(characters:phases:action:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/shadow(color:radius:x:y:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"shadow","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"color"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI5ColorV","kind":"typeIdentifier","text":"Color"},{"text":", ","kind":"text"},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"x"},{"kind":"text","text":": "},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"y","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"shadow(color:radius:x:y:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/shadow(color:radius:x:y:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/shadow(color:radius:x:y:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/colorEffect(_:isEnabled:)":{"title":"colorEffect(_:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/coloreffect(_:isenabled:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"colorEffect"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI6ShaderV","text":"Shader"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isEnabled"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/colorEffect(_:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onChange(of:initial:_:)-302sn":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onChange","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"V"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"initial"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"V"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"onChange(of:initial:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onchange(of:initial:_:)-302sn","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onChange(of:initial:_:)-302sn","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/presentationDetents(_:selection:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"presentationDetents"},{"kind":"text","text":"("},{"text":"Set","kind":"typeIdentifier","preciseIdentifier":"s:Sh"},{"text":"<","kind":"text"},{"text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"selection","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"PresentationDetent","preciseIdentifier":"s:7SwiftUI18PresentationDetentV"},{"kind":"text","text":">) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"presentationDetents(_:selection:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/presentationdetents(_:selection:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/presentationDetents(_:selection:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alert(_:isPresented:presenting:actions:)-89yi":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alert(_:ispresented:presenting:actions:)-89yi","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"alert"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"text":", ","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":">, ","kind":"text"},{"text":"presenting","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"actions"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"A"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alert(_:isPresented:presenting:actions:)-89yi","title":"alert(_:isPresented:presenting:actions:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchSuggestions(_:for:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"searchSuggestions","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"text":"SearchSuggestionsPlacement","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV"},{"text":".","kind":"text"},{"text":"Set","preciseIdentifier":"s:7SwiftUI26SearchSuggestionsPlacementV3SetV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"searchSuggestions(_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchsuggestions(_:for:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchSuggestions(_:for:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-8hu97":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"L","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":", "},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8hu97","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8hu97","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/background(ignoresSafeAreaEdges:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"background"},{"text":"(","kind":"text"},{"text":"ignoresSafeAreaEdges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Edge","preciseIdentifier":"s:7SwiftUI4EdgeO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"background(ignoresSafeAreaEdges:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/background(ignoressafeareaedges:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/background(ignoresSafeAreaEdges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/toolbarTitleMenu(content:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"toolbarTitleMenu","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"content"},{"kind":"text","text":": () -> "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"toolbarTitleMenu(content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/toolbartitlemenu(content:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/toolbarTitleMenu(content:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/disclosureGroupStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"disclosureGroupStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"disclosureGroupStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/disclosuregroupstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/disclosureGroupStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-6cl28":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityRotor"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"kind":"text","text":">("},{"text":"AccessibilitySystemRotor","preciseIdentifier":"s:7SwiftUI24AccessibilitySystemRotorV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-6cl28","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-6cl28","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/sheet(isPresented:onDismiss:content:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sheet","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Content"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":">, ","kind":"text"},{"text":"onDismiss","kind":"externalParam"},{"kind":"text","text":": (() -> "},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":")?, "},{"text":"content","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/sheet(isPresented:onDismiss:content:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/sheet(ispresented:ondismiss:content:)","type":"topic","title":"sheet(isPresented:onDismiss:content:)","role":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/formStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formStyle","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"formStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/formstyle(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/formStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/foregroundStyle(_:)":{"abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/foregroundstyle(_:)","title":"foregroundStyle(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"foregroundStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/foregroundStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/keyboardShortcut(_:modifiers:localization:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"keyboardShortcut","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13KeyEquivalentV","kind":"typeIdentifier","text":"KeyEquivalent"},{"kind":"text","text":", "},{"text":"modifiers","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"EventModifiers","preciseIdentifier":"s:7SwiftUI14EventModifiersV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"localization","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV","text":"KeyboardShortcut"},{"kind":"text","text":"."},{"text":"Localization","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI16KeyboardShortcutV12LocalizationV"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"keyboardShortcut(_:modifiers:localization:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/keyboardshortcut(_:modifiers:localization:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/keyboardShortcut(_:modifiers:localization:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/opacity(_:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/opacity(_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"opacity","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/opacity(_:)","title":"opacity(_:)","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarTitle(_:displayMode:)-5sstf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarTitle"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"displayMode"},{"kind":"text","text":": "},{"text":"NavigationBarItem","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV"},{"text":".","kind":"text"},{"text":"TitleDisplayMode","preciseIdentifier":"s:7SwiftUI17NavigationBarItemV16TitleDisplayModeO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","deprecated":true,"title":"navigationBarTitle(_:displayMode:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbartitle(_:displaymode:)-5sstf","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarTitle(_:displayMode:)-5sstf"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentShape(_:eoFill:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentshape(_:eofill:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contentShape","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"eoFill"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"contentShape(_:eoFill:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentShape(_:eoFill:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/searchable(text:placement:prompt:)-5aijf":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"searchable","kind":"identifier"},{"text":"(","kind":"text"},{"text":"text","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Binding","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":">, "},{"text":"placement","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"SearchFieldPlacement","preciseIdentifier":"s:7SwiftUI20SearchFieldPlacementV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"prompt"},{"text":": ","kind":"text"},{"text":"Text","preciseIdentifier":"s:7SwiftUI4TextV","kind":"typeIdentifier"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"searchable(text:placement:prompt:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/searchable(text:placement:prompt:)-5aijf","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/searchable(text:placement:prompt:)-5aijf","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/persistentSystemOverlays(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"persistentSystemOverlays"},{"kind":"text","text":"("},{"text":"Visibility","preciseIdentifier":"s:7SwiftUI10VisibilityO","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"persistentSystemOverlays(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/persistentsystemoverlays(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/persistentSystemOverlays(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/blur(radius:opaque:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"blur"},{"text":"(","kind":"text"},{"text":"radius","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"text":"opaque","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"blur(radius:opaque:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/blur(radius:opaque:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/blur(radius:opaque:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scenePadding(_:edges:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scenepadding(_:edges:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scenePadding(_:edges:)","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"scenePadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI12ScenePaddingV","text":"ScenePadding","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"edges","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","kind":"typeIdentifier","text":"Set"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"scenePadding(_:edges:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-2ytxg":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-2ytxg","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-2ytxg","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"accessibilityCustomContent","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Text","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":", ","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"preciseIdentifier":"c:objc(cs)AXCustomContent","kind":"typeIdentifier","text":"AXCustomContent"},{"kind":"text","text":"."},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ModifiedContent","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","text":"AccessibilityAttachmentModifier"},{"kind":"text","text":">"}],"type":"topic","title":"accessibilityCustomContent(_:_:importance:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/dynamicTypeSize(_:)-4v6j4":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/dynamictypesize(_:)-4v6j4","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dynamicTypeSize"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/dynamicTypeSize(_:)-4v6j4","kind":"symbol","title":"dynamicTypeSize(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/compositingGroup()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compositingGroup"},{"kind":"text","text":"() -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"compositingGroup()","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/compositinggroup()","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/compositingGroup()"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/speechAnnouncementsQueued(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"speechAnnouncementsQueued","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"speechAnnouncementsQueued(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/speechannouncementsqueued(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/speechAnnouncementsQueued(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/findDisabled(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"findDisabled","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"findDisabled(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/finddisabled(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/findDisabled(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/distortionEffect(_:maxSampleOffset:isEnabled:)":{"title":"distortionEffect(_:maxSampleOffset:isEnabled:)","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/distortioneffect(_:maxsampleoffset:isenabled:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distortionEffect","kind":"identifier"},{"kind":"text","text":"("},{"text":"Shader","preciseIdentifier":"s:7SwiftUI6ShaderV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSampleOffset"},{"text":": ","kind":"text"},{"text":"CGSize","kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize"},{"kind":"text","text":", "},{"text":"isEnabled","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/distortionEffect(_:maxSampleOffset:isEnabled:)","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowInsets(_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowinsets(_:)","title":"listRowInsets(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowInsets(_:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"listRowInsets"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier","text":"EdgeInsets"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transition(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"transition","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13AnyTransitionV","text":"AnyTransition"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"transition(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transition(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transition(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/frame(width:height:alignment:)":{"title":"frame(width:height:alignment:)","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/frame(width:height:alignment:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/frame(width:height:alignment:)","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"frame","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"width"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"height"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AlignmentV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:)-8doyu":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:)-8doyu","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Content","kind":"genericParameter"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI4TextV","text":"Text","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"entries","kind":"externalParam"},{"kind":"text","text":": () -> "},{"text":"Content","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:)-8doyu","kind":"symbol","title":"accessibilityRotor(_:entries:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/mask(alignment:_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/mask(alignment:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/mask(alignment:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"mask"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Mask"},{"kind":"text","text":">("},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":", () -> "},{"kind":"typeIdentifier","text":"Mask"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","title":"mask(alignment:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transformEnvironment(_:transform:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transformEnvironment","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"WritableKeyPath","kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI17EnvironmentValuesV","text":"EnvironmentValues","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"V","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"transform"},{"kind":"text","text":": ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"transformEnvironment(_:transform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transformenvironment(_:transform:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transformEnvironment(_:transform:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/help(_:)-3sq7v":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"help"},{"kind":"text","text":"("},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"help(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/help(_:)-3sq7v","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/help(_:)-3sq7v","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onDrop(of:delegate:)-4vyza":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"onDrop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": ["},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"delegate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12DropDelegateP","text":"DropDelegate"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","deprecated":true,"title":"onDrop(of:delegate:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/ondrop(of:delegate:)-4vyza","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onDrop(of:delegate:)-4vyza"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/gaugeStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"gaugeStyle","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"gaugeStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/gaugestyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/gaugeStyle(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"confirmationDialog"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"A"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"kind":"text","text":", "},{"kind":"externalParam","text":"actions"},{"kind":"text","text":": () -> "},{"text":"A","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:)-3xp49"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileDialogMessage(_:)-2ip4n":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileDialogMessage(_:)-2ip4n","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileDialogMessage","kind":"identifier"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filedialogmessage(_:)-2ip4n","title":"fileDialogMessage(_:)","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/statusBarHidden(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"statusBarHidden"},{"text":"(","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"statusBarHidden(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/statusbarhidden(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/statusBarHidden(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollTransition(topLeading:bottomTrailing:axis:transition:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"scrollTransition"},{"kind":"text","text":"("},{"text":"topLeading","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"bottomTrailing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"ScrollTransitionConfiguration","preciseIdentifier":"s:7SwiftUI29ScrollTransitionConfigurationV"},{"text":", ","kind":"text"},{"text":"axis","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis","kind":"typeIdentifier"},{"kind":"text","text":"?, "},{"text":"transition","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","text":"EmptyVisualEffect"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI21ScrollTransitionPhaseO","kind":"typeIdentifier","text":"ScrollTransitionPhase"},{"kind":"text","text":") -> some "},{"preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier","text":"VisualEffect"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"scrollTransition(topLeading:bottomTrailing:axis:transition:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrolltransition(topleading:bottomtrailing:axis:transition:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollTransition(topLeading:bottomTrailing:axis:transition:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/indexViewStyle(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indexViewStyle","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"indexViewStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/indexviewstyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/indexViewStyle(_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/autocapitalization(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"autocapitalization"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@E@UITextAutocapitalizationType","kind":"typeIdentifier","text":"UITextAutocapitalizationType"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"autocapitalization(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/autocapitalization(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/autocapitalization(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/aspectRatio(_:contentMode:)-4l6lv":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"aspectRatio"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@S@CGSize","kind":"typeIdentifier","text":"CGSize"},{"kind":"text","text":", "},{"kind":"externalParam","text":"contentMode"},{"text":": ","kind":"text"},{"text":"ContentMode","preciseIdentifier":"s:7SwiftUI11ContentModeO","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"aspectRatio(_:contentMode:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/aspectratio(_:contentmode:)-4l6lv","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/aspectRatio(_:contentMode:)-4l6lv","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scrollClipDisabled(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scrollClipDisabled(_:)","kind":"symbol","role":"symbol","title":"scrollClipDisabled(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scrollClipDisabled","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scrollclipdisabled(_:)","abstract":[],"type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:value:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:value:)","kind":"symbol","title":"animation(_:value:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:value:)","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"?, ","kind":"text"},{"text":"value","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarItems(leading:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"navigationBarItems","kind":"identifier"},{"kind":"text","text":"<"},{"text":"L","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"leading"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"L"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","deprecated":true,"title":"navigationBarItems(leading:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbaritems(leading:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarItems(leading:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-7ee7j":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"importance","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Importance","preciseIdentifier":"c:@E@AXCustomContentImportance","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-7ee7j","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-7ee7j","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityCustomContent(_:_:importance:)-883iw":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"accessibilityCustomContent"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"V"},{"kind":"text","text":">("},{"text":"AccessibilityCustomContentKey","preciseIdentifier":"s:7SwiftUI29AccessibilityCustomContentKeyV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"V","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"importance"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:objc(cs)AXCustomContent","text":"AXCustomContent"},{"text":".","kind":"text"},{"text":"Importance","kind":"typeIdentifier","preciseIdentifier":"c:@E@AXCustomContentImportance"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI15ModifiedContentV","text":"ModifiedContent"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier","text":"AccessibilityAttachmentModifier"},{"text":">","kind":"text"}],"kind":"symbol","title":"accessibilityCustomContent(_:_:importance:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitycustomcontent(_:_:importance:)-883iw","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityCustomContent(_:_:importance:)-883iw"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-1s345":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"I"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"preview","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI12SharePreviewV","text":"SharePreview","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"I","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"navigationDocument(_:preview:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-1s345","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-1s345","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/alignmentGuide(_:computeValue:)-92wpz":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"alignmentGuide"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"VerticalAlignment","preciseIdentifier":"s:7SwiftUI17VerticalAlignmentV"},{"text":", ","kind":"text"},{"text":"computeValue","kind":"externalParam"},{"text":": (","kind":"text"},{"preciseIdentifier":"s:7SwiftUI14ViewDimensionsV","text":"ViewDimensions","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"alignmentGuide(_:computeValue:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/alignmentguide(_:computevalue:)-92wpz","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/alignmentGuide(_:computeValue:)-92wpz"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/phaseAnimator(_:trigger:content:animation:)":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/phaseAnimator(_:trigger:content:animation:)","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/phaseanimator(_:trigger:content:animation:)","role":"symbol","title":"phaseAnimator(_:trigger:content:animation:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"phaseAnimator"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Phase"},{"kind":"text","text":">(some "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"trigger"},{"kind":"text","text":": some "},{"kind":"typeIdentifier","text":"Equatable","preciseIdentifier":"s:SQ"},{"kind":"text","text":", "},{"kind":"externalParam","text":"content"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","text":"PlaceholderContentView","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"text":"Phase","kind":"typeIdentifier"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"text":", ","kind":"text"},{"text":"animation","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Phase","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/transaction(_:body:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/transaction(_:body:)","type":"topic","title":"transaction(_:body:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"transaction","kind":"identifier"},{"kind":"text","text":"<"},{"text":"V","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Transaction","preciseIdentifier":"s:7SwiftUI11TransactionV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":", "},{"text":"body","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"PlaceholderContentView","preciseIdentifier":"s:7SwiftUI22PlaceholderContentViewV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"text":"V","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/transaction(_:body:)","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationBarBackButtonHidden(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationBarBackButtonHidden"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationbarbackbuttonhidden(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationBarBackButtonHidden(_:)","abstract":[],"title":"navigationBarBackButtonHidden(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/safeAreaPadding(_:_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"safeAreaPadding","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"safeAreaPadding(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/safeareapadding(_:_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/safeAreaPadding(_:_:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/containerRelativeFrame(_:count:span:spacing:alignment:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"containerRelativeFrame"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4AxisO","text":"Axis"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Set","preciseIdentifier":"s:7SwiftUI4AxisO3SetV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"span","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"spacing"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"alignment"},{"text":": ","kind":"text"},{"text":"Alignment","preciseIdentifier":"s:7SwiftUI9AlignmentV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"containerRelativeFrame(_:count:span:spacing:alignment:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/containerrelativeframe(_:count:span:spacing:alignment:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/containerRelativeFrame(_:count:span:spacing:alignment:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/refreshable(action:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"refreshable"},{"text":"(","kind":"text"},{"text":"action","kind":"externalParam"},{"text":": () ","kind":"text"},{"text":"async","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"refreshable(action:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/refreshable(action:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/refreshable(action:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/draggable(_:)":{"type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/draggable(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"draggable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(() -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/draggable(_:)","kind":"symbol","title":"draggable(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/unredacted()":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/unredacted()","title":"unredacted()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"unredacted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/unredacted()","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"confirmationDialog","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"A","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"M","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"isPresented"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"titleVisibility"},{"kind":"text","text":": "},{"text":"Visibility","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI10VisibilityO"},{"text":", ","kind":"text"},{"text":"actions","kind":"externalParam"},{"kind":"text","text":": () -> "},{"kind":"typeIdentifier","text":"A"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"text":": () -> ","kind":"text"},{"text":"M","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"kind":"symbol","title":"confirmationDialog(_:isPresented:titleVisibility:actions:message:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/confirmationDialog(_:isPresented:titleVisibility:actions:message:)-18uq9","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/position(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"position","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"c:@S@CGPoint","text":"CGPoint","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"position(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/position(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/position(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/symbolRenderingMode(_:)":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/symbolrenderingmode(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"symbolRenderingMode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"SymbolRenderingMode","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI19SymbolRenderingModeV"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/symbolRenderingMode(_:)","kind":"symbol","title":"symbolRenderingMode(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"rotation3DEffect","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI5AngleV","text":"Angle","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"axis","kind":"externalParam"},{"text":": (x","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat"},{"text":", y","kind":"text"},{"text":": ","kind":"text"},{"text":"CGFloat","kind":"typeIdentifier","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"kind":"text","text":", z"},{"kind":"text","text":": "},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier","text":"CGFloat"},{"kind":"text","text":"), "},{"kind":"externalParam","text":"anchor"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9UnitPointV","text":"UnitPoint"},{"kind":"text","text":", "},{"kind":"externalParam","text":"anchorZ"},{"kind":"text","text":": "},{"text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"perspective","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"CGFloat","preciseIdentifier":"s:14CoreFoundation7CGFloatV"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/rotation3deffect(_:axis:anchor:anchorz:perspective:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/rotation3DEffect(_:axis:anchor:anchorZ:perspective:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/brightness(_:)":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/brightness(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/brightness(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"brightness"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Sd","kind":"typeIdentifier","text":"Double"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"brightness(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-2hqj":{"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-2hqj","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-2hqj","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"navigationTitle"},{"text":"(","kind":"text"},{"text":"LocalizedStringKey","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"role":"symbol","title":"navigationTitle(_:)","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityChartDescriptor(_:)":{"abstract":[],"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityChartDescriptor(_:)","kind":"symbol","role":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitychartdescriptor(_:)","title":"accessibilityChartDescriptor(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"accessibilityChartDescriptor"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badgeProminence(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"badgeProminence"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BadgeProminence","preciseIdentifier":"s:7SwiftUI15BadgeProminenceV"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"badgeProminence(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badgeprominence(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badgeProminence(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/onAppear(perform:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"onAppear","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"perform"},{"text":": (() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":")?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"onAppear(perform:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/onappear(perform:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/onAppear(perform:)","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityLabel(_:)-7t49g":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"accessibilityLabel","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ModifiedContent","preciseIdentifier":"s:7SwiftUI15ModifiedContentV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"AccessibilityAttachmentModifier","preciseIdentifier":"s:7SwiftUI31AccessibilityAttachmentModifierV","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"accessibilityLabel(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilitylabel(_:)-7t49g","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityLabel(_:)-7t49g"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/contentMargins(_:_:for:)-2nato":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"contentMargins","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4EdgeO","text":"Edge","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7SwiftUI4EdgeO3SetV","text":"Set","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"EdgeInsets","preciseIdentifier":"s:7SwiftUI10EdgeInsetsV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"for"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI22ContentMarginPlacementV","text":"ContentMarginPlacement"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"kind":"symbol","title":"contentMargins(_:_:for:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/contentmargins(_:_:for:)-2nato","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/contentMargins(_:_:for:)-2nato","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/badge(_:)-7s4kd":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"badge"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI18LocalizedStringKeyV","text":"LocalizedStringKey"},{"kind":"text","text":"?) -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"badge(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/badge(_:)-7s4kd","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/badge(_:)-7s4kd"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/animation(_:)":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/animation(_:)","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"animation","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI9AnimationV","text":"Animation"},{"kind":"text","text":"?) -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"role":"symbol","title":"animation(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/animation(_:)","deprecated":true,"abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listRowSpacing(_:)":{"type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"listRowSpacing"},{"kind":"text","text":"("},{"preciseIdentifier":"s:14CoreFoundation7CGFloatV","text":"CGFloat","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/listrowspacing(_:)","role":"symbol","title":"listRowSpacing(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listRowSpacing(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/focusedSceneValue(_:_:)-6shvo":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"focusedSceneValue"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:s15WritableKeyPathC","text":"WritableKeyPath"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:7SwiftUI13FocusedValuesV","kind":"typeIdentifier","text":"FocusedValues"},{"kind":"text","text":", "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"?>, "},{"text":"T","kind":"typeIdentifier"},{"text":"?) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"focusedSceneValue(_:_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/focusedscenevalue(_:_:)-6shvo","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/focusedSceneValue(_:_:)-6shvo","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/fileMover(isPresented:file:onCompletion:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"fileMover","kind":"identifier"},{"text":"(","kind":"text"},{"text":"isPresented","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7SwiftUI7BindingV","text":"Binding","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"file"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation3URLV","text":"URL"},{"kind":"text","text":"?, "},{"kind":"externalParam","text":"onCompletion"},{"text":": (","kind":"text"},{"text":"Result","preciseIdentifier":"s:s6ResultO","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"preciseIdentifier":"s:10Foundation3URLV","kind":"typeIdentifier","text":"URL"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"fileMover(isPresented:file:onCompletion:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/filemover(ispresented:file:oncompletion:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/fileMover(isPresented:file:onCompletion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/scaleEffect(_:anchor:)-478js":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"scaleEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"c:@S@CGSize","text":"CGSize"},{"text":", ","kind":"text"},{"text":"anchor","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI9UnitPointV","kind":"typeIdentifier","text":"UnitPoint"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"View","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"scaleEffect(_:anchor:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/scaleeffect(_:anchor:)-478js","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/scaleEffect(_:anchor:)-478js","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"accessibilityRotor","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"L"},{"text":", ","kind":"text"},{"text":"EntryModel","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"ID"},{"text":">(","kind":"text"},{"text":"L","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"entries"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","text":"EntryModel"},{"kind":"text","text":"], "},{"kind":"externalParam","text":"entryID"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s7KeyPathC","kind":"typeIdentifier","text":"KeyPath"},{"kind":"text","text":"<"},{"text":"EntryModel","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"ID","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"entryLabel","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7KeyPathC","text":"KeyPath"},{"text":"<","kind":"text"},{"text":"EntryModel","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":">) -> "},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"kind":"symbol","title":"accessibilityRotor(_:entries:entryID:entryLabel:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/accessibilityRotor(_:entries:entryID:entryLabel:)-5kzol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/imageScale(_:)":{"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/imageScale(_:)","type":"topic","title":"imageScale(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"imageScale"},{"text":"(","kind":"text"},{"text":"Image","preciseIdentifier":"s:7SwiftUI5ImageV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Scale","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI5ImageV5ScaleO"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"role":"symbol","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/imagescale(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationDocument(_:preview:)-3wrqo":{"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationdocument(_:preview:)-3wrqo","kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationDocument(_:preview:)-3wrqo","title":"navigationDocument(_:preview:)","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationDocument"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"D"},{"text":", ","kind":"text"},{"text":"I1","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"I2","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"D","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"preview","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"SharePreview","preciseIdentifier":"s:7SwiftUI12SharePreviewV"},{"text":"<","kind":"text"},{"text":"I1","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"I2","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/listStyle(_:)":{"kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"listStyle"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"type":"topic","role":"symbol","title":"listStyle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/liststyle(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/listStyle(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/navigationTitle(_:)-voku":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"navigationTitle"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Binding","preciseIdentifier":"s:7SwiftUI7BindingV"},{"text":"<","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":">) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"text":"View","preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier"}],"kind":"symbol","title":"navigationTitle(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/navigationtitle(_:)-voku","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/navigationTitle(_:)-voku","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/typeSelectEquivalent(_:)-58dqq":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"typeSelectEquivalent"},{"text":"(","kind":"text"},{"text":"Text","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4TextV"},{"text":"?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"typeSelectEquivalent(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/typeselectequivalent(_:)-58dqq","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/typeSelectEquivalent(_:)-58dqq"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:).json new file mode 100644 index 0000000..4b98506 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/visualEffect(_:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"visualEffect","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"effect","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"@escaping"},{"text":" (","kind":"text"},{"text":"EmptyVisualEffect","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI13GeometryProxyV","text":"GeometryProxy"},{"kind":"text","text":") -> some "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VisualEffectP","text":"VisualEffect"},{"kind":"text","text":") -> "},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"role":"symbol","title":"visualEffect(_:)","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"17.0"},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"14.0","beta":false},{"unavailable":false,"beta":false,"deprecated":false,"name":"tvOS","introducedAt":"17.0"},{"name":"watchOS","deprecated":false,"introducedAt":"10.0","unavailable":false,"beta":false}],"modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"visualEffect"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"EmptyVisualEffect","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"GeometryProxy","preciseIdentifier":"s:7SwiftUI13GeometryProxyV"},{"kind":"text","text":") -> some "},{"text":"VisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI12VisualEffectP"},{"kind":"text","text":") -> "},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","text":"View","kind":"typeIdentifier"}],"extendedModule":"SwiftUI","externalID":"s:7SwiftUI4ViewPAAE12visualEffectyQrqd__AA011EmptyVisualE0V_AA13GeometryProxyVtYbcAA0gE0Rd__lF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"View.visualEffect(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/visualeffect(_:)"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/visualEffect(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"visualEffect","kind":"identifier"},{"kind":"text","text":"(("},{"text":"EmptyVisualEffect","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI17EmptyVisualEffectV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI13GeometryProxyV","text":"GeometryProxy","kind":"typeIdentifier"},{"text":") -> some ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI12VisualEffectP","kind":"typeIdentifier","text":"VisualEffect"},{"text":") -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"abstract":[],"title":"visualEffect(_:)","role":"symbol","type":"topic","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/visualeffect(_:)","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/visualEffect(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/zindex(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/zindex(_:).json new file mode 100644 index 0000000..082ec83 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/bitmovinplayerview/zindex(_:).json @@ -0,0 +1 @@ +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/bitmovinplayerview\/zindex(_:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/zIndex(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"zIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sd","text":"Double"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"},{"kind":"text","text":"\n"}],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"View.zIndex(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"]]},"metadata":{"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:7SwiftUI4ViewPAAE6zIndexyQrSdF::SYNTHESIZED::s:11PlaybackSDK18BitMovinPlayerViewV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"zIndex"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Double","preciseIdentifier":"s:Sd"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"text":"View","kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP"}],"title":"zIndex(_:)","modules":[{"name":"PlaybackSDK","relatedModules":["SwiftUI"]}],"platforms":[{"unavailable":false,"introducedAt":"13.0","deprecated":false,"beta":false,"name":"iOS"},{"introducedAt":"10.15","unavailable":false,"deprecated":false,"beta":false,"name":"macOS"},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"13.0","name":"tvOS"},{"beta":false,"unavailable":false,"introducedAt":"6.0","name":"watchOS","deprecated":false}],"extendedModule":"SwiftUI"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView","kind":"symbol","title":"BitMovinPlayerView","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BitMovinPlayerView","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerview","type":"topic","navigatorTitle":[{"kind":"identifier","text":"BitMovinPlayerView"}],"abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/View-Implementations":{"kind":"article","title":"View Implementations","role":"collectionGroup","type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/bitmovinplayerview\/view-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/View-Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/BitMovinPlayerView/zIndex(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"zIndex","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Sd","text":"Double","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"kind":"symbol","title":"zIndex(_:)","url":"\/documentation\/playbacksdk\/bitmovinplayerview\/zindex(_:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitMovinPlayerView\/zIndex(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/documentation.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/documentation.json new file mode 100644 index 0000000..ae8eef8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/documentation.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"content","content":[{"text":"Overview","anchor":"Overview","type":"heading","level":2}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/documentation"]}],"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"sections":[],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/Documentation","interfaceLanguage":"swift"},"metadata":{"title":"TESWT","modules":[{"name":"PlaybackSDK"}],"roleHeading":"Article","role":"collectionGroup"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror.json new file mode 100644 index 0000000..45023a3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","interfaceLanguage":"swift"},"relationshipsSections":[{"identifiers":["doc:\/\/PlaybackSDK\/s5ErrorP","doc:\/\/PlaybackSDK\/s8SendableP"],"kind":"relationships","title":"Conforms To","type":"conformsTo"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"text":"PlayBackAPIError","kind":"identifier"}],"languages":["swift"],"platforms":["iOS"]}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK"}],"title":"PlayBackAPIError","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayBackAPIError"}],"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"symbolKind":"enum","roleHeading":"Enumeration","role":"symbol"},"abstract":[{"text":"Define the errors that can occur during API interactions","type":"text"}],"topicSections":[{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/apiError(statusCode:message:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/initializationError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlaybackDataURL","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlayerInformationURL","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidResponsePlaybackData","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/loadHLSStreamError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/networkError(_:)"],"title":"Enumeration Cases"},{"title":"Default Implementations","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/Error-Implementations"],"generated":true}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/initializationError":{"title":"PlayBackAPIError.initializationError","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/initializationerror","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"initializationError","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/initializationError","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/s5ErrorP":{"title":"Swift.Error","identifier":"doc:\/\/PlaybackSDK\/s5ErrorP","type":"unresolvable"},"doc://PlaybackSDK/s8SendableP":{"title":"Swift.Sendable","identifier":"doc:\/\/PlaybackSDK\/s8SendableP","type":"unresolvable"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/Error-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/Error-Implementations","url":"\/documentation\/playbacksdk\/playbackapierror\/error-implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"Error Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/networkError(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/networkError(_:)","role":"symbol","title":"PlayBackAPIError.networkError(_:)","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/networkerror(_:)","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkError"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidPlaybackDataURL":{"title":"PlayBackAPIError.invalidPlaybackDataURL","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidplaybackdataurl","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"invalidPlaybackDataURL","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlaybackDataURL","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/apiError(statusCode:message:)":{"url":"\/documentation\/playbacksdk\/playbackapierror\/apierror(statuscode:message:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/apiError(statusCode:message:)","role":"symbol","type":"topic","title":"PlayBackAPIError.apiError(statusCode:message:)","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"apiError","kind":"identifier"},{"kind":"text","text":"("},{"text":"statusCode","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidPlayerInformationURL":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlayerInformationURL","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidplayerinformationurl","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"invalidPlayerInformationURL","kind":"identifier"}],"title":"PlayBackAPIError.invalidPlayerInformationURL","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/loadHLSStreamError":{"url":"\/documentation\/playbacksdk\/playbackapierror\/loadhlsstreamerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/loadHLSStreamError","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadHLSStreamError"}],"type":"topic","title":"PlayBackAPIError.loadHLSStreamError"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidResponsePlaybackData":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidResponsePlaybackData","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidresponseplaybackdata","title":"PlayBackAPIError.invalidResponsePlaybackData","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidResponsePlaybackData"}],"role":"symbol","abstract":[],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:).json new file mode 100644 index 0000000..eff4671 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:).json @@ -0,0 +1 @@ +{"metadata":{"role":"symbol","symbolKind":"case","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"apiError","kind":"identifier"},{"kind":"text","text":"("},{"text":"statusCode","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"message"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"externalID":"s:11PlaybackSDK16PlayBackAPIErrorO8apiErroryACSi_SStcACmF","title":"PlayBackAPIError.apiError(statusCode:message:)","modules":[{"name":"PlaybackSDK"}],"roleHeading":"Case"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror\/apierror(statuscode:message:)"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/apiError(statusCode:message:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"apiError"},{"kind":"text","text":"("},{"kind":"externalParam","text":"statusCode"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"message","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":")","kind":"text"}]}]}],"kind":"symbol","references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/apiError(statusCode:message:)":{"url":"\/documentation\/playbacksdk\/playbackapierror\/apierror(statuscode:message:)","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/apiError(statusCode:message:)","role":"symbol","type":"topic","title":"PlayBackAPIError.apiError(statusCode:message:)","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"apiError","kind":"identifier"},{"kind":"text","text":"("},{"text":"statusCode","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"message","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/error-implementations.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/error-implementations.json new file mode 100644 index 0000000..bfb1346 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/error-implementations.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/Error-Implementations"},"schemaVersion":{"patch":0,"minor":3,"major":0},"topicSections":[{"generated":true,"title":"Instance Properties","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/localizedDescription"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror\/error-implementations"]}],"kind":"article","metadata":{"role":"collectionGroup","modules":[{"name":"PlaybackSDK"}],"title":"Error Implementations"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/localizedDescription":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/localizedDescription","url":"\/documentation\/playbacksdk\/playbackapierror\/localizeddescription","role":"symbol","type":"topic","kind":"symbol","abstract":[],"title":"localizedDescription","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/initializationerror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/initializationerror.json new file mode 100644 index 0000000..513c920 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/initializationerror.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/playbackapierror\/initializationerror"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/initializationError"},"metadata":{"title":"PlayBackAPIError.initializationError","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO19initializationErroryA2CmF","modules":[{"name":"PlaybackSDK"}],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"initializationError","kind":"identifier"}],"roleHeading":"Case","role":"symbol","symbolKind":"case"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"initializationError"}],"languages":["swift"],"platforms":["iOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/initializationError":{"title":"PlayBackAPIError.initializationError","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/initializationerror","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"initializationError","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/initializationError","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl.json new file mode 100644 index 0000000..2745cd4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"invalidPlaybackDataURL","kind":"identifier"}],"platforms":["iOS"]}],"kind":"declarations"}],"metadata":{"externalID":"s:11PlaybackSDK16PlayBackAPIErrorO07invalidA7DataURLyA2CmF","modules":[{"name":"PlaybackSDK"}],"roleHeading":"Case","role":"symbol","title":"PlayBackAPIError.invalidPlaybackDataURL","symbolKind":"case","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"invalidPlaybackDataURL","kind":"identifier"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlaybackDataURL"},"sections":[],"variants":[{"paths":["\/documentation\/playbacksdk\/playbackapierror\/invalidplaybackdataurl"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidPlaybackDataURL":{"title":"PlayBackAPIError.invalidPlaybackDataURL","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidplaybackdataurl","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"invalidPlaybackDataURL","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlaybackDataURL","kind":"symbol","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl.json new file mode 100644 index 0000000..cd34365 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"invalidPlayerInformationURL","kind":"identifier"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlayerInformationURL","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror\/invalidplayerinformationurl"]}],"metadata":{"roleHeading":"Case","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO27invalidPlayerInformationURLyA2CmF","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"invalidPlayerInformationURL"}],"symbolKind":"case","title":"PlayBackAPIError.invalidPlayerInformationURL","modules":[{"name":"PlaybackSDK"}],"role":"symbol"},"kind":"symbol","sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidPlayerInformationURL":{"kind":"symbol","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidPlayerInformationURL","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidplayerinformationurl","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"invalidPlayerInformationURL","kind":"identifier"}],"title":"PlayBackAPIError.invalidPlayerInformationURL","abstract":[],"role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata.json new file mode 100644 index 0000000..7e7d5b7 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidResponsePlaybackData","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"invalidResponsePlaybackData","kind":"identifier"}],"languages":["swift"],"platforms":["iOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror\/invalidresponseplaybackdata"]}],"metadata":{"symbolKind":"case","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"invalidResponsePlaybackData"}],"role":"symbol","modules":[{"name":"PlaybackSDK"}],"title":"PlayBackAPIError.invalidResponsePlaybackData","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO015invalidResponseA4DatayA2CmF","roleHeading":"Case"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/invalidResponsePlaybackData":{"type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/invalidResponsePlaybackData","url":"\/documentation\/playbacksdk\/playbackapierror\/invalidresponseplaybackdata","title":"PlayBackAPIError.invalidResponsePlaybackData","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"invalidResponsePlaybackData"}],"role":"symbol","abstract":[],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/loadhlsstreamerror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/loadhlsstreamerror.json new file mode 100644 index 0000000..a607ead --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/loadhlsstreamerror.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"metadata":{"fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"loadHLSStreamError","kind":"identifier"}],"role":"symbol","roleHeading":"Case","modules":[{"name":"PlaybackSDK"}],"title":"PlayBackAPIError.loadHLSStreamError","symbolKind":"case","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO18loadHLSStreamErroryA2CmF"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/loadHLSStreamError","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbackapierror\/loadhlsstreamerror"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadHLSStreamError"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/loadHLSStreamError":{"url":"\/documentation\/playbacksdk\/playbackapierror\/loadhlsstreamerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/loadHLSStreamError","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadHLSStreamError"}],"type":"topic","title":"PlayBackAPIError.loadHLSStreamError"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/localizeddescription.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/localizeddescription.json new file mode 100644 index 0000000..0d4b7c1 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/localizeddescription.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"localizedDescription"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/localizedDescription","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/playbackapierror\/localizeddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/Error-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:11PlaybackSDK16PlayBackAPIErrorO","modules":[{"name":"PlaybackSDK","relatedModules":["Swift"]}],"platforms":[{"name":"iOS","beta":false,"deprecated":false,"introducedAt":"8.0","unavailable":false},{"name":"macOS","deprecated":false,"introducedAt":"10.10","unavailable":false,"beta":false},{"introducedAt":"9.0","name":"tvOS","unavailable":false,"deprecated":false,"beta":false},{"unavailable":false,"deprecated":false,"introducedAt":"2.0","beta":false,"name":"watchOS"}],"symbolKind":"property","roleHeading":"Instance Property","title":"localizedDescription","extendedModule":"Swift"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/Error-Implementations":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/Error-Implementations","url":"\/documentation\/playbacksdk\/playbackapierror\/error-implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"Error Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/localizedDescription":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/localizedDescription","url":"\/documentation\/playbacksdk\/playbackapierror\/localizeddescription","role":"symbol","type":"topic","kind":"symbol","abstract":[],"title":"localizedDescription","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"localizedDescription"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/networkerror(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/networkerror(_:).json new file mode 100644 index 0000000..7a841f2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbackapierror/networkerror(_:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkError"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"kind":"text","text":")"}],"platforms":["iOS"],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/networkError(_:)"},"variants":[{"paths":["\/documentation\/playbacksdk\/playbackapierror\/networkerror(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"metadata":{"modules":[{"name":"PlaybackSDK"}],"role":"symbol","title":"PlayBackAPIError.networkError(_:)","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"text":"networkError","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"text":")","kind":"text"}],"roleHeading":"Case","symbolKind":"case","externalID":"s:11PlaybackSDK16PlayBackAPIErrorO12networkErroryACs0G0_pcACmF"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError/networkError(_:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError\/networkError(_:)","role":"symbol","title":"PlayBackAPIError.networkError(_:)","type":"topic","url":"\/documentation\/playbacksdk\/playbackapierror\/networkerror(_:)","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"networkError"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Error","preciseIdentifier":"s:s5ErrorP"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager.json new file mode 100644 index 0000000..3cf407e --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager.json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Singleton responsible for initializing the SDK and managing player information"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/init()"]},{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/initialize(apiKey:baseURL:completion:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/loadPlayer(entryID:authorizationToken:onError:)"],"title":"Instance Methods"},{"title":"Type Properties","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/shared"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbacksdkmanager"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"PlayBackSDKManager"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"kind":"symbol","sections":[],"metadata":{"externalID":"s:11PlaybackSDK18PlayBackSDKManagerC","fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"modules":[{"name":"PlaybackSDK"}],"symbolKind":"class","role":"symbol","roleHeading":"Class","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"title":"PlayBackSDKManager"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/init()":{"fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"abstract":[{"text":"Initializes the ","type":"text"},{"type":"codeVoice","code":"PlayBackSDKManager"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/init()","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/init()","title":"init()"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/initialize(apiKey:baseURL:completion:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"initialize","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"baseURL"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"completion"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes the SDK with the provided API key."},{"text":" ","type":"text"},{"text":"This fuction must be called in the AppDelegate","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/initialize(apikey:baseurl:completion:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/initialize(apiKey:baseURL:completion:)","title":"initialize(apiKey:baseURL:completion:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/loadPlayer(entryID:authorizationToken:onError:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadPlayer"},{"kind":"text","text":"("},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"authorizationToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"onError","kind":"externalParam"},{"kind":"text","text":": (("},{"text":"PlayBackAPIError","kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK16PlayBackAPIErrorO"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"abstract":[{"text":"Loads a video player with the specified entry ID and authorization token.","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/loadplayer(entryid:authorizationtoken:onerror:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/loadPlayer(entryID:authorizationToken:onError:)","title":"loadPlayer(entryID:authorizationToken:onError:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/shared":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"shared","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:11PlaybackSDK18PlayBackSDKManagerC","text":"PlayBackSDKManager","kind":"typeIdentifier"}],"abstract":[{"text":"Singleton instance of the ","type":"text"},{"type":"codeVoice","code":"PlayBackSDKManager"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/shared","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/shared","title":"shared"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/init().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/init().json new file mode 100644 index 0000000..678a1ba --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/init().json @@ -0,0 +1 @@ +{"metadata":{"modules":[{"name":"PlaybackSDK"}],"externalID":"s:11PlaybackSDK18PlayBackSDKManagerCACycfc","title":"init()","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"roleHeading":"Initializer","symbolKind":"init","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"()"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Initializes the "},{"code":"PlayBackSDKManager","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/init()","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/playbacksdk\/playbacksdkmanager\/init()"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/init()":{"fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"abstract":[{"text":"Initializes the ","type":"text"},{"type":"codeVoice","code":"PlayBackSDKManager"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/init()","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/init()","title":"init()"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:).json new file mode 100644 index 0000000..9f3a0bd --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:).json @@ -0,0 +1 @@ +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/playbacksdkmanager\/initialize(apikey:baseurl:completion:)"]}],"abstract":[{"type":"text","text":"Initializes the SDK with the provided API key."},{"text":" ","type":"text"},{"type":"text","text":"This fuction must be called in the AppDelegate"}],"metadata":{"title":"initialize(apiKey:baseURL:completion:)","externalID":"s:11PlaybackSDK18PlayBackSDKManagerC10initialize6apiKey7baseURL10completionySS_SSSgys6ResultOySSs5Error_pGctF","modules":[{"name":"PlaybackSDK"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"initialize","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiKey"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"baseURL","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":"?, ","kind":"text"},{"text":"completion","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP","text":"Error"},{"text":">) -> ","kind":"text"},{"text":"Void","preciseIdentifier":"s:s4Voida","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/initialize(apiKey:baseURL:completion:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"initialize","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"apiKey"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"baseURL"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":"? = nil, ","kind":"text"},{"kind":"externalParam","text":"completion"},{"text":": ","kind":"text"},{"kind":"attribute","text":"@escaping"},{"kind":"text","text":" ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":")"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The API key for initializing the SDK."}]}],"name":"apiKey"},{"name":"baseURL","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The base URL for API endpoints. Defaults to "},{"code":"nil","type":"codeVoice"},{"type":"text","text":"."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"text":"A closure to be called after initialization.","type":"text"},{"type":"text","text":" "},{"text":"It receives a result indicating success or failure.","type":"text"}]}],"name":"completion"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/initialize(apiKey:baseURL:completion:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"initialize","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"apiKey"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"baseURL"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":"?, ","kind":"text"},{"kind":"externalParam","text":"completion"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result","preciseIdentifier":"s:s6ResultO"},{"kind":"text","text":"<"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s4Voida","kind":"typeIdentifier","text":"Void"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initializes the SDK with the provided API key."},{"text":" ","type":"text"},{"text":"This fuction must be called in the AppDelegate","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/initialize(apikey:baseurl:completion:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/initialize(apiKey:baseURL:completion:)","title":"initialize(apiKey:baseURL:completion:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:).json new file mode 100644 index 0000000..8cd4d24 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager"]]},"metadata":{"externalID":"s:11PlaybackSDK18PlayBackSDKManagerC10loadPlayer7entryID18authorizationToken7onErrorQrSS_SSyAA0cD8APIErrorOcSgtF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"loadPlayer"},{"text":"(","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"authorizationToken","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"text":"onError","kind":"externalParam"},{"text":": ((","kind":"text"},{"preciseIdentifier":"s:11PlaybackSDK16PlayBackAPIErrorO","text":"PlayBackAPIError","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"kind":"text","text":" "},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"}],"symbolKind":"method","title":"loadPlayer(entryID:authorizationToken:onError:)","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK"}],"role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/playbacksdk\/playbacksdkmanager\/loadplayer(entryid:authorizationtoken:onerror:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Loads a video player with the specified entry ID and authorization token.","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/loadPlayer(entryID:authorizationToken:onError:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"loadPlayer","kind":"identifier"},{"text":"(","kind":"text"},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"authorizationToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"onError"},{"kind":"text","text":": (("},{"preciseIdentifier":"s:11PlaybackSDK16PlayBackAPIErrorO","kind":"typeIdentifier","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","text":"PlayBackAPIError"},{"text":") -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":")?) -> ","kind":"text"},{"kind":"keyword","text":"some"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:7SwiftUI4ViewP","kind":"typeIdentifier","text":"View"},{"text":"\n","kind":"text"}],"languages":["swift"],"platforms":["iOS"]}]},{"content":[{"type":"heading","anchor":"return-value","level":2,"text":"Return Value"},{"type":"paragraph","inlineContent":[{"text":"A view representing the video player configured with the provided entry ID and authorization token.","type":"text"}]}],"kind":"content"},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"text":"entryID: The unique identifier of the video entry to be loaded.","type":"text"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"authorizationToken: The token used for authorization to access the video content."}]}]}],"type":"unorderedList"},{"inlineContent":[{"type":"text","text":"Example usage:"}],"type":"paragraph"},{"code":["let playerView = loadPlayer(entryID: \"exampleEntryID\", authorizationToken: \"exampleToken\")"],"type":"codeListing","syntax":"swift"}],"kind":"content"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/loadPlayer(entryID:authorizationToken:onError:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadPlayer"},{"kind":"text","text":"("},{"text":"entryID","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"authorizationToken"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"onError","kind":"externalParam"},{"kind":"text","text":": (("},{"text":"PlayBackAPIError","kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK16PlayBackAPIErrorO"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"kind":"text","text":")?) -> "},{"text":"some","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI4ViewP","text":"View"}],"abstract":[{"text":"Loads a video player with the specified entry ID and authorization token.","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/loadplayer(entryid:authorizationtoken:onerror:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/loadPlayer(entryID:authorizationToken:onError:)","title":"loadPlayer(entryID:authorizationToken:onError:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackAPIError":{"navigatorTitle":[{"text":"PlayBackAPIError","kind":"identifier"}],"url":"\/documentation\/playbacksdk\/playbackapierror","abstract":[{"type":"text","text":"Define the errors that can occur during API interactions"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackAPIError","role":"symbol","title":"PlayBackAPIError","type":"topic","fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"PlayBackAPIError"}],"kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/shared.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/shared.json new file mode 100644 index 0000000..3244262 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/playbacksdkmanager/shared.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager"]]},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"shared"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","preciseIdentifier":"s:11PlaybackSDK18PlayBackSDKManagerC","text":"PlayBackSDKManager","kind":"typeIdentifier"}],"platforms":["iOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/shared","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Singleton instance of the ","type":"text"},{"type":"codeVoice","code":"PlayBackSDKManager"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/playbacksdk\/playbacksdkmanager\/shared"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:11PlaybackSDK18PlayBackSDKManagerC6sharedACvpZ","symbolKind":"property","modules":[{"name":"PlaybackSDK"}],"title":"shared","role":"symbol","roleHeading":"Type Property","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"text":"shared","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK18PlayBackSDKManagerC","text":"PlayBackSDKManager"}]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager/shared":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"shared","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:11PlaybackSDK18PlayBackSDKManagerC","text":"PlayBackSDKManager","kind":"typeIdentifier"}],"abstract":[{"text":"Singleton instance of the ","type":"text"},{"type":"codeVoice","code":"PlayBackSDKManager"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager\/shared","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager\/shared","title":"shared"},"doc://PlaybackSDK/documentation/PlaybackSDK/PlayBackSDKManager":{"fragments":[{"text":"class","kind":"keyword"},{"kind":"text","text":" "},{"text":"PlayBackSDKManager","kind":"identifier"}],"abstract":[{"text":"Singleton responsible for initializing the SDK and managing player information","type":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/playbacksdk\/playbacksdkmanager","role":"symbol","navigatorTitle":[{"text":"PlayBackSDKManager","kind":"identifier"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/PlayBackSDKManager","title":"PlayBackSDKManager"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror.json new file mode 100644 index 0000000..3700024 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror.json @@ -0,0 +1 @@ +{"metadata":{"roleHeading":"Enumeration","navigatorTitle":[{"kind":"identifier","text":"SDKError"}],"symbolKind":"enum","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"SDKError","kind":"identifier"}],"modules":[{"name":"PlaybackSDK"}],"title":"SDKError","role":"symbol","externalID":"s:11PlaybackSDK8SDKErrorO"},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"text":"SDKError","kind":"identifier"}],"languages":["swift"],"platforms":["iOS"]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"topicSections":[{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/initializationError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/loadHLSStreamError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/missingLicense"],"title":"Enumeration Cases"},{"title":"Default Implementations","generated":true,"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Equatable-Implementations","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Error-Implementations"]}],"relationshipsSections":[{"type":"conformsTo","kind":"relationships","title":"Conforms To","identifiers":["doc:\/\/PlaybackSDK\/SQ","doc:\/\/PlaybackSDK\/s5ErrorP","doc:\/\/PlaybackSDK\/SH","doc:\/\/PlaybackSDK\/s8SendableP"]}],"variants":[{"paths":["\/documentation\/playbacksdk\/sdkerror"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/s8SendableP":{"title":"Swift.Sendable","type":"unresolvable","identifier":"doc:\/\/PlaybackSDK\/s8SendableP"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/initializationError":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"initializationError"}],"kind":"symbol","title":"SDKError.initializationError","url":"\/documentation\/playbacksdk\/sdkerror\/initializationerror","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/initializationError","abstract":[]},"doc://PlaybackSDK/SH":{"identifier":"doc:\/\/PlaybackSDK\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/Equatable-Implementations":{"type":"topic","role":"collectionGroup","kind":"article","title":"Equatable Implementations","url":"\/documentation\/playbacksdk\/sdkerror\/equatable-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Equatable-Implementations","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/missingLicense":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"missingLicense"}],"kind":"symbol","title":"SDKError.missingLicense","url":"\/documentation\/playbacksdk\/sdkerror\/missinglicense","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/missingLicense"},"doc://PlaybackSDK/SQ":{"title":"Swift.Equatable","type":"unresolvable","identifier":"doc:\/\/PlaybackSDK\/SQ"},"doc://PlaybackSDK/s5ErrorP":{"title":"Swift.Error","type":"unresolvable","identifier":"doc:\/\/PlaybackSDK\/s5ErrorP"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/Error-Implementations":{"type":"topic","role":"collectionGroup","kind":"article","title":"Error Implementations","url":"\/documentation\/playbacksdk\/sdkerror\/error-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Error-Implementations","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/loadHLSStreamError":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadHLSStreamError"}],"kind":"symbol","title":"SDKError.loadHLSStreamError","url":"\/documentation\/playbacksdk\/sdkerror\/loadhlsstreamerror","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/loadHLSStreamError"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/!=(_:_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/!=(_:_:).json new file mode 100644 index 0000000..7a342b4 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/!=(_:_:).json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/!=(_:_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Equatable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/sdkerror\/!=(_:_:)"]}],"metadata":{"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:11PlaybackSDK8SDKErrorO","symbolKind":"op","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","extendedModule":"Swift","title":"!=(_:_:)","modules":[{"name":"PlaybackSDK","relatedModules":["Swift"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/Equatable-Implementations":{"type":"topic","role":"collectionGroup","kind":"article","title":"Equatable Implementations","url":"\/documentation\/playbacksdk\/sdkerror\/equatable-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Equatable-Implementations","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/!=(_:_:)":{"url":"\/documentation\/playbacksdk\/sdkerror\/!=(_:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/!=(_:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","title":"!=(_:_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/equatable-implementations.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/equatable-implementations.json new file mode 100644 index 0000000..491752c --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/equatable-implementations.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]]},"metadata":{"modules":[{"name":"PlaybackSDK"}],"role":"collectionGroup","title":"Equatable Implementations"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Equatable-Implementations"},"sections":[],"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"topicSections":[{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/!=(_:_:)"],"title":"Operators","generated":true}],"variants":[{"paths":["\/documentation\/playbacksdk\/sdkerror\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/!=(_:_:)":{"url":"\/documentation\/playbacksdk\/sdkerror\/!=(_:_:)","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/!=(_:_:)","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","title":"!=(_:_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/error-implementations.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/error-implementations.json new file mode 100644 index 0000000..fce7c47 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/error-implementations.json @@ -0,0 +1 @@ +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/sdkerror\/error-implementations"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"collectionGroup","title":"Error Implementations","modules":[{"name":"PlaybackSDK"}]},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Error-Implementations","interfaceLanguage":"swift"},"kind":"article","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]]},"topicSections":[{"title":"Instance Properties","generated":true,"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/localizedDescription"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/localizedDescription":{"url":"\/documentation\/playbacksdk\/sdkerror\/localizeddescription","abstract":[],"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"localizedDescription","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/localizedDescription","kind":"symbol","title":"localizedDescription"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/initializationerror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/initializationerror.json new file mode 100644 index 0000000..098d100 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/initializationerror.json @@ -0,0 +1 @@ +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"initializationError"}],"platforms":["iOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/sdkerror\/initializationerror"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/initializationError"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]]},"metadata":{"externalID":"s:11PlaybackSDK8SDKErrorO19initializationErroryA2CmF","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"initializationError"}],"role":"symbol","roleHeading":"Case","modules":[{"name":"PlaybackSDK"}],"symbolKind":"case","title":"SDKError.initializationError"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/initializationError":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"initializationError"}],"kind":"symbol","title":"SDKError.initializationError","url":"\/documentation\/playbacksdk\/sdkerror\/initializationerror","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/initializationError","abstract":[]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/loadhlsstreamerror.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/loadhlsstreamerror.json new file mode 100644 index 0000000..cc7a333 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/loadhlsstreamerror.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/sdkerror\/loadhlsstreamerror"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"loadHLSStreamError","kind":"identifier"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","metadata":{"externalID":"s:11PlaybackSDK8SDKErrorO18loadHLSStreamErroryA2CmF","symbolKind":"case","roleHeading":"Case","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"loadHLSStreamError","kind":"identifier"}],"role":"symbol","title":"SDKError.loadHLSStreamError","modules":[{"name":"PlaybackSDK"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/loadHLSStreamError"},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/loadHLSStreamError":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"loadHLSStreamError"}],"kind":"symbol","title":"SDKError.loadHLSStreamError","url":"\/documentation\/playbacksdk\/sdkerror\/loadhlsstreamerror","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/loadHLSStreamError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/localizeddescription.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/localizeddescription.json new file mode 100644 index 0000000..ca90962 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/localizeddescription.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Error-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/sdkerror\/localizeddescription"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"localizedDescription","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"modules":[{"name":"PlaybackSDK","relatedModules":["Swift"]}],"title":"localizedDescription","symbolKind":"property","roleHeading":"Instance Property","extendedModule":"Swift","role":"symbol","externalID":"s:s5ErrorP10FoundationE20localizedDescriptionSSvp::SYNTHESIZED::s:11PlaybackSDK8SDKErrorO","platforms":[{"unavailable":false,"beta":false,"name":"iOS","deprecated":false,"introducedAt":"8.0"},{"introducedAt":"10.10","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"9.0","beta":false,"deprecated":false,"name":"tvOS","unavailable":false},{"beta":false,"deprecated":false,"name":"watchOS","introducedAt":"2.0","unavailable":false}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Error.localizedDescription"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/localizedDescription"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"localizedDescription"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/localizedDescription":{"url":"\/documentation\/playbacksdk\/sdkerror\/localizeddescription","abstract":[],"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"localizedDescription","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/localizedDescription","kind":"symbol","title":"localizedDescription"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/Error-Implementations":{"type":"topic","role":"collectionGroup","kind":"article","title":"Error Implementations","url":"\/documentation\/playbacksdk\/sdkerror\/error-implementations","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/Error-Implementations","abstract":[]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/missinglicense.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/missinglicense.json new file mode 100644 index 0000000..8a076f9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/sdkerror/missinglicense.json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/missingLicense","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"PlaybackSDK"}],"roleHeading":"Case","symbolKind":"case","role":"symbol","externalID":"s:11PlaybackSDK8SDKErrorO14missingLicenseyA2CmF","fragments":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"missingLicense"}],"title":"SDKError.missingLicense"},"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/playbacksdk\/sdkerror\/missinglicense"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError"]]},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"missingLicense"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError":{"url":"\/documentation\/playbacksdk\/sdkerror","role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError","abstract":[],"kind":"symbol","fragments":[{"text":"enum","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"SDKError"}],"type":"topic","navigatorTitle":[{"text":"SDKError","kind":"identifier"}],"title":"SDKError"},"doc://PlaybackSDK/documentation/PlaybackSDK/SDKError/missingLicense":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"missingLicense"}],"kind":"symbol","title":"SDKError.missingLicense","url":"\/documentation\/playbacksdk\/sdkerror\/missinglicense","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/SDKError\/missingLicense"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin.json new file mode 100644 index 0000000..7a1893d --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin.json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"},{"text":" : AnyObject","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","metadata":{"title":"VideoPlayerPlugin","role":"symbol","fragments":[{"text":"protocol","kind":"keyword"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"roleHeading":"Protocol","externalID":"s:11PlaybackSDK17VideoPlayerPluginP","symbolKind":"protocol","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPlugin"}],"modules":[{"name":"PlaybackSDK"}]},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"relationshipsSections":[{"title":"Conforming Types","kind":"relationships","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"],"type":"conformingTypes"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerplugin"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/name","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/version"]},{"title":"Instance Methods","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/pause()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/play()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/playerView(hlsURLString:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/removePlayer()","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/setup()"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/version":{"url":"\/documentation\/playbacksdk\/videoplayerplugin\/version","abstract":[],"required":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"version","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"version","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/version","role":"symbol","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/playerView(hlsURLString:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/playerView(hlsURLString:)","type":"topic","title":"playerView(hlsURLString:)","kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin\/playerview(hlsurlstring:)","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playerView"},{"text":"(","kind":"text"},{"text":"hlsURLString","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView"}],"abstract":[{"text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)","type":"text"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/removePlayer()":{"title":"removePlayer()","abstract":[],"type":"topic","required":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/removePlayer()","url":"\/documentation\/playbacksdk\/videoplayerplugin\/removeplayer()","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"removePlayer","kind":"identifier"},{"text":"()","kind":"text"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/BitmovinPlayerPlugin":{"role":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"class"},{"kind":"text","text":" "},{"kind":"identifier","text":"BitmovinPlayerPlugin"}],"url":"\/documentation\/playbacksdk\/bitmovinplayerplugin","kind":"symbol","navigatorTitle":[{"text":"BitmovinPlayerPlugin","kind":"identifier"}],"abstract":[],"title":"BitmovinPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/BitmovinPlayerPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/setup()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"setup","kind":"identifier"},{"kind":"text","text":"()"}],"url":"\/documentation\/playbacksdk\/videoplayerplugin\/setup()","required":true,"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/setup()","type":"topic","title":"setup()"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/play()":{"url":"\/documentation\/playbacksdk\/videoplayerplugin\/play()","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"play","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"play()","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/play()","role":"symbol","required":true},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/name":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/name","kind":"symbol","abstract":[],"required":true,"title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/playbacksdk\/videoplayerplugin\/name","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/pause()":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/pause()","kind":"symbol","role":"symbol","title":"pause()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}],"url":"\/documentation\/playbacksdk\/videoplayerplugin\/pause()","abstract":[],"type":"topic","required":true}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/name.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/name.json new file mode 100644 index 0000000..b24ba5a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/name.json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/name"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"name"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"name":"PlaybackSDK"}],"required":true,"externalID":"s:11PlaybackSDK17VideoPlayerPluginP4nameSSvp","roleHeading":"Instance Property","title":"name","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/name"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/name":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/name","kind":"symbol","abstract":[],"required":true,"title":"name","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"name","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/playbacksdk\/videoplayerplugin\/name","role":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/pause().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/pause().json new file mode 100644 index 0000000..73997ec --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/pause().json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/pause()"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"pause"},{"text":"()","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"externalID":"s:11PlaybackSDK17VideoPlayerPluginP5pauseyyF","role":"symbol","title":"pause()","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}],"modules":[{"name":"PlaybackSDK"}],"roleHeading":"Instance Method","required":true},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/pause()"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/pause()":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/pause()","kind":"symbol","role":"symbol","title":"pause()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"pause","kind":"identifier"},{"text":"()","kind":"text"}],"url":"\/documentation\/playbacksdk\/videoplayerplugin\/pause()","abstract":[],"type":"topic","required":true}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/play().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/play().json new file mode 100644 index 0000000..606cbb5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/play().json @@ -0,0 +1 @@ +{"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/play()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"play"},{"kind":"text","text":"()"}],"externalID":"s:11PlaybackSDK17VideoPlayerPluginP4playyyF","title":"play()","role":"symbol","required":true},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"play"},{"text":"()","kind":"text"}],"languages":["swift"]}]}],"kind":"symbol","variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/play()"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/play()":{"url":"\/documentation\/playbacksdk\/videoplayerplugin\/play()","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"play","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","title":"play()","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/play()","role":"symbol","required":true}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:).json new file mode 100644 index 0000000..5ab7da8 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:).json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/playerview(hlsurlstring:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"playerView","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"hlsURLString"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"metadata":{"modules":[{"name":"PlaybackSDK"}],"title":"playerView(hlsURLString:)","symbolKind":"method","required":true,"roleHeading":"Instance Method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"playerView"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"hlsURLString"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"text":"AnyView","preciseIdentifier":"s:7SwiftUI7AnyViewV","kind":"typeIdentifier"}],"externalID":"s:11PlaybackSDK17VideoPlayerPluginP10playerView12hlsURLString7SwiftUI03AnyG0VSS_tF"},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/playerView(hlsURLString:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)","type":"text"}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/playerView(hlsURLString:)":{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/playerView(hlsURLString:)","type":"topic","title":"playerView(hlsURLString:)","kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin\/playerview(hlsurlstring:)","required":true,"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playerView"},{"text":"(","kind":"text"},{"text":"hlsURLString","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:7SwiftUI7AnyViewV","text":"AnyView"}],"abstract":[{"text":"func handleEvent(event: BitmovinPlayerCore.PlayerEvent)","type":"text"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/removeplayer().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/removeplayer().json new file mode 100644 index 0000000..0a7bd00 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/removeplayer().json @@ -0,0 +1 @@ +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removePlayer","kind":"identifier"},{"kind":"text","text":"()"}],"languages":["swift"]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/removePlayer()","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"metadata":{"title":"removePlayer()","required":true,"externalID":"s:11PlaybackSDK17VideoPlayerPluginP06removeD0yyF","modules":[{"name":"PlaybackSDK"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"removePlayer","kind":"identifier"},{"kind":"text","text":"()"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/removeplayer()"]}],"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/removePlayer()":{"title":"removePlayer()","abstract":[],"type":"topic","required":true,"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/removePlayer()","url":"\/documentation\/playbacksdk\/videoplayerplugin\/removeplayer()","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"removePlayer","kind":"identifier"},{"text":"()","kind":"text"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/setup().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/setup().json new file mode 100644 index 0000000..f8ff9a3 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/setup().json @@ -0,0 +1 @@ +{"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/setup()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/setup()","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"PlaybackSDK"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"setup"},{"text":"()","kind":"text"}],"externalID":"s:11PlaybackSDK17VideoPlayerPluginP5setupyyF","role":"symbol","roleHeading":"Instance Method","title":"setup()","required":true,"symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"setup","kind":"identifier"},{"kind":"text","text":"()"}]}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/setup()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"setup","kind":"identifier"},{"kind":"text","text":"()"}],"url":"\/documentation\/playbacksdk\/videoplayerplugin\/setup()","required":true,"abstract":[],"kind":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/setup()","type":"topic","title":"setup()"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/version.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/version.json new file mode 100644 index 0000000..7e05140 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerplugin/version.json @@ -0,0 +1 @@ +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"required":true,"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"version"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"modules":[{"name":"PlaybackSDK"}],"title":"version","roleHeading":"Instance Property","role":"symbol","externalID":"s:11PlaybackSDK17VideoPlayerPluginP7versionSSvp","symbolKind":"property"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"version","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/version","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerplugin\/version"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin/version":{"url":"\/documentation\/playbacksdk\/videoplayerplugin\/version","abstract":[],"required":true,"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"version","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"title":"version","type":"topic","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin\/version","role":"symbol","kind":"symbol"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager.json new file mode 100644 index 0000000..d5ec662 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager.json @@ -0,0 +1 @@ +{"schemaVersion":{"major":0,"patch":0,"minor":3},"relationshipsSections":[{"kind":"relationships","type":"conformsTo","identifiers":["doc:\/\/PlaybackSDK\/7Combine16ObservableObjectP"],"title":"Conforms To"}],"metadata":{"fragments":[{"kind":"keyword","text":"class"},{"text":" ","kind":"text"},{"text":"VideoPlayerPluginManager","kind":"identifier"}],"role":"symbol","roleHeading":"Class","modules":[{"name":"PlaybackSDK"}],"title":"VideoPlayerPluginManager","symbolKind":"class","externalID":"s:11PlaybackSDK24VideoPlayerPluginManagerC","navigatorTitle":[{"text":"VideoPlayerPluginManager","kind":"identifier"}]},"topicSections":[{"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/selectedPlugin"],"title":"Instance Properties"},{"title":"Instance Methods","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/registerPlugin(_:)","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/removePlugin()"]},{"title":"Type Properties","identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/shared"]},{"generated":true,"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/ObservableObject-Implementations"],"title":"Default Implementations"}],"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"},"sections":[],"references":{"doc://PlaybackSDK/7Combine16ObservableObjectP":{"type":"unresolvable","title":"Combine.ObservableObject","identifier":"doc:\/\/PlaybackSDK\/7Combine16ObservableObjectP"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/shared":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/shared","abstract":[],"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"shared"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:11PlaybackSDK24VideoPlayerPluginManagerC","text":"VideoPlayerPluginManager","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/shared","kind":"symbol","title":"shared"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/selectedPlugin":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/selectedplugin","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"selectedPlugin"},{"kind":"text","text":": "},{"preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","kind":"typeIdentifier","text":"VideoPlayerPlugin"},{"text":"?","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/selectedPlugin","kind":"symbol","title":"selectedPlugin"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/registerPlugin(_:)":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/registerplugin(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerPlugin"},{"kind":"text","text":"("},{"text":"VideoPlayerPlugin","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/registerPlugin(_:)","kind":"symbol","title":"registerPlugin(_:)"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/ObservableObject-Implementations":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/observableobject-implementations","type":"topic","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/ObservableObject-Implementations","kind":"article","title":"ObservableObject Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/removePlugin()":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removePlugin","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/removePlugin()","abstract":[],"role":"symbol","kind":"symbol","title":"removePlugin()","url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/removeplugin()","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange.json new file mode 100644 index 0000000..f467649 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange.json @@ -0,0 +1 @@ +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/objectWillChange"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/ObservableObject-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"ObservableObject.objectWillChange","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"objectWillChange","kind":"identifier"},{"text":": ","kind":"text"},{"text":"ObservableObjectPublisher","kind":"typeIdentifier","preciseIdentifier":"s:7Combine25ObservableObjectPublisherC"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/objectwillchange"]}],"metadata":{"modules":[{"relatedModules":["Combine"],"name":"PlaybackSDK"}],"externalID":"s:7Combine16ObservableObjectPA2A0bC9PublisherC0c10WillChangeD0RtzrlE06objecteF0AEvp::SYNTHESIZED::s:11PlaybackSDK24VideoPlayerPluginManagerC","role":"symbol","roleHeading":"Instance Property","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"ObjectWillChangePublisher"},{"type":"text","text":" is "},{"type":"codeVoice","code":"ObservableObjectPublisher"},{"type":"text","text":"."}]},"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"objectWillChange"},{"text":": ","kind":"text"},{"text":"ObservableObjectPublisher","kind":"typeIdentifier","preciseIdentifier":"s:7Combine25ObservableObjectPublisherC"}],"extendedModule":"Combine","title":"objectWillChange","platforms":[{"introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false,"name":"iOS"},{"introducedAt":"10.15","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"beta":false,"name":"watchOS","deprecated":false,"introducedAt":"6.0"}],"symbolKind":"property"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/ObservableObject-Implementations":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/observableobject-implementations","type":"topic","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/ObservableObject-Implementations","kind":"article","title":"ObservableObject Implementations"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/objectWillChange":{"type":"topic","url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/objectwillchange","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"objectWillChange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine25ObservableObjectPublisherC","text":"ObservableObjectPublisher"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/objectWillChange","conformance":{"constraints":[{"code":"ObjectWillChangePublisher","type":"codeVoice"},{"text":" is ","type":"text"},{"code":"ObservableObjectPublisher","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"kind":"symbol","title":"objectWillChange"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations.json new file mode 100644 index 0000000..e2cf857 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/ObservableObject-Implementations","interfaceLanguage":"swift"},"metadata":{"role":"collectionGroup","title":"ObservableObject Implementations","modules":[{"name":"PlaybackSDK"}]},"topicSections":[{"generated":true,"identifiers":["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/objectWillChange"],"title":"Instance Properties"}],"kind":"article","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/observableobject-implementations"]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]]},"sections":[],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/objectWillChange":{"type":"topic","url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/objectwillchange","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"objectWillChange"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine25ObservableObjectPublisherC","text":"ObservableObjectPublisher"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/objectWillChange","conformance":{"constraints":[{"code":"ObjectWillChangePublisher","type":"codeVoice"},{"text":" is ","type":"text"},{"code":"ObservableObjectPublisher","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"kind":"symbol","title":"objectWillChange"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:).json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:).json new file mode 100644 index 0000000..6d247f9 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:).json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]]},"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/registerPlugin(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"registerPlugin","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"plugin","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","text":"VideoPlayerPlugin"},{"kind":"text","text":")"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/registerplugin(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"registerPlugin","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","text":"VideoPlayerPlugin"},{"text":")","kind":"text"}],"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"PlaybackSDK"}],"symbolKind":"method","externalID":"s:11PlaybackSDK24VideoPlayerPluginManagerC08registerE0yyAA0cdE0_pF","title":"registerPlugin(_:)"},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/registerPlugin(_:)":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/registerplugin(_:)","abstract":[],"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"registerPlugin"},{"kind":"text","text":"("},{"text":"VideoPlayerPlugin","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/registerPlugin(_:)","kind":"symbol","title":"registerPlugin(_:)"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/removeplugin().json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/removeplugin().json new file mode 100644 index 0000000..30174da --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/removeplugin().json @@ -0,0 +1 @@ +{"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removePlugin","kind":"identifier"},{"text":"()","kind":"text"}],"role":"symbol","externalID":"s:11PlaybackSDK24VideoPlayerPluginManagerC06removeE0yyF","title":"removePlugin()","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"PlaybackSDK"}]},"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/removePlugin()","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"removePlugin","kind":"identifier"},{"text":"()","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/removeplugin()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/removePlugin()":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removePlugin","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/removePlugin()","abstract":[],"role":"symbol","kind":"symbol","title":"removePlugin()","url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/removeplugin()","type":"topic"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin.json new file mode 100644 index 0000000..bf48d73 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin.json @@ -0,0 +1 @@ +{"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/selectedPlugin","interfaceLanguage":"swift"},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"selectedPlugin","kind":"identifier"},{"text":": ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP"},{"text":"?","kind":"text"}],"role":"symbol","roleHeading":"Instance Property","modules":[{"name":"PlaybackSDK"}],"title":"selectedPlugin","symbolKind":"property","externalID":"s:11PlaybackSDK24VideoPlayerPluginManagerC08selectedE0AA0cdE0_pSgvp"},"primaryContentSections":[{"declarations":[{"platforms":["iOS"],"languages":["swift"],"tokens":[{"text":"@","kind":"attribute"},{"preciseIdentifier":"s:7Combine9PublishedV","kind":"attribute","text":"Published"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"selectedPlugin","kind":"identifier"},{"text":": ","kind":"text"},{"text":"VideoPlayerPlugin","preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","kind":"typeIdentifier","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" "},{"text":"set","kind":"keyword"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/selectedplugin"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]]},"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPlugin":{"kind":"symbol","url":"\/documentation\/playbacksdk\/videoplayerplugin","abstract":[],"fragments":[{"kind":"keyword","text":"protocol"},{"text":" ","kind":"text"},{"text":"VideoPlayerPlugin","kind":"identifier"}],"type":"topic","title":"VideoPlayerPlugin","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPlugin","role":"symbol","navigatorTitle":[{"text":"VideoPlayerPlugin","kind":"identifier"}]},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/selectedPlugin":{"type":"topic","abstract":[],"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/selectedplugin","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"selectedPlugin"},{"kind":"text","text":": "},{"preciseIdentifier":"s:11PlaybackSDK17VideoPlayerPluginP","kind":"typeIdentifier","text":"VideoPlayerPlugin"},{"text":"?","kind":"text"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/selectedPlugin","kind":"symbol","title":"selectedPlugin"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/shared.json b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/shared.json new file mode 100644 index 0000000..34e3f4a --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/documentation/playbacksdk/videoplayerpluginmanager/shared.json @@ -0,0 +1 @@ +{"metadata":{"externalID":"s:11PlaybackSDK24VideoPlayerPluginManagerC6sharedACvpZ","title":"shared","symbolKind":"property","modules":[{"name":"PlaybackSDK"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"text":"shared","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:11PlaybackSDK24VideoPlayerPluginManagerC","text":"VideoPlayerPluginManager"}],"roleHeading":"Type Property","role":"symbol"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["iOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"shared","kind":"identifier"},{"kind":"text","text":": "},{"text":"VideoPlayerPluginManager","preciseIdentifier":"s:11PlaybackSDK24VideoPlayerPluginManagerC","kind":"typeIdentifier","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/shared","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK","doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/playbacksdk\/videoplayerpluginmanager\/shared"]}],"references":{"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager/shared":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/shared","abstract":[],"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"kind":"identifier","text":"shared"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:11PlaybackSDK24VideoPlayerPluginManagerC","text":"VideoPlayerPluginManager","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager\/shared","kind":"symbol","title":"shared"},"doc://PlaybackSDK/documentation/PlaybackSDK":{"kind":"symbol","title":"PlaybackSDK","abstract":[],"url":"\/documentation\/playbacksdk","type":"topic","role":"collection","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK"},"doc://PlaybackSDK/documentation/PlaybackSDK/VideoPlayerPluginManager":{"url":"\/documentation\/playbacksdk\/videoplayerpluginmanager","abstract":[],"type":"topic","fragments":[{"text":"class","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"VideoPlayerPluginManager"}],"role":"symbol","identifier":"doc:\/\/PlaybackSDK\/documentation\/PlaybackSDK\/VideoPlayerPluginManager","kind":"symbol","title":"VideoPlayerPluginManager","navigatorTitle":[{"kind":"identifier","text":"VideoPlayerPluginManager"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/customplugintutorial.json b/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/customplugintutorial.json new file mode 100644 index 0000000..2d5bf08 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/customplugintutorial.json @@ -0,0 +1 @@ +{"hierarchy":{"modules":[{"projects":[{"sections":[{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Installation","kind":"task"},{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Video-Player-Plugins-Optional","kind":"task"},{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Error-Handling","kind":"task"}],"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"}],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Getting-Started"},{"projects":[{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial","sections":[{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Video-Player-Plugins-Optional","kind":"task"},{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Error-Handling","kind":"task"}]}],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Creating-a-Custom-Playback-Player-Plugin"}],"paths":[["doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/$volume","doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Creating-a-Custom-Playback-Player-Plugin"]],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents"},"kind":"project","metadata":{"title":"Playback SDK Overview","categoryPathComponent":"Table-Of-Contents","category":"PlaybackSDK Tutorial","role":"project"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/tutorials\/playbacksdk\/customplugintutorial"]}],"identifier":{"url":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[{"kind":"hero","title":"Playback SDK Overview","estimatedTimeInMinutes":30,"content":[{"inlineContent":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"strong","inlineContent":[{"type":"text","text":"Key Features:"}]}]},{"items":[{"content":[{"inlineContent":[{"inlineContent":[{"text":"Abstraction:","type":"text"}],"type":"strong"},{"type":"text","text":" Hides the complexities of underlying video APIs, allowing you to focus on the core playback experience."}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"strong","inlineContent":[{"type":"text","text":"Flexibility:"}]},{"type":"text","text":" Supports different video providers and allows the creation of custom playback plugins for extended functionalities."}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"strong","inlineContent":[{"text":"Error Handling:","type":"text"}]},{"text":" Provides mechanisms to handle potential issues during playback and notify your application.","type":"text"}]}]}],"type":"unorderedList"}],"chapter":"Creating a Custom Playback Player Plugin"},{"tasks":[{"anchor":"Video-Player-Plugins-Optional","title":"Video Player Plugins (Optional)","stepsSection":[{"type":"step","runtimePreview":null,"content":[{"inlineContent":[{"inlineContent":[{"text":"Step 1:","type":"text"}],"type":"strong"},{"text":" Implement your custom player plugin conforming to the ","type":"text"},{"type":"codeVoice","code":"VideoPlayerPlugin"},{"text":" protocol.","type":"text"}],"type":"paragraph"}],"code":null,"media":null,"caption":[]},{"runtimePreview":null,"media":null,"type":"step","content":[{"inlineContent":[{"type":"strong","inlineContent":[{"text":"Step 2:","type":"text"}]},{"type":"text","text":" Register your custom plugin with the manager and use the selected plugin for playback."}],"type":"paragraph"}],"caption":[],"code":null}],"contentSection":[{"mediaPosition":"trailing","kind":"contentAndMedia","content":[{"inlineContent":[{"type":"text","text":"The Playback SDK supports extending functionalities through custom video player plugins. These plugins can provide extended functionalities or integrate with third-party video players. Refer to the full source code for details on creating custom plugins."}],"type":"paragraph"},{"code":["\/\/ Implement your custom player plugin conforming to VideoPlayerPlugin protocol","","\/\/ Register your custom plugin with the manager","let pluginManager = VideoPlayerPluginManager.shared","pluginManager.registerPlugin(YourCustomPlayerPlugin())","\/\/ Use the selected plugin for playback","pluginManager.selectedPlugin?.play()"],"type":"codeListing","syntax":"swift"}]}]},{"title":"Error Handling","stepsSection":[],"anchor":"Error-Handling","contentSection":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The library propagates errors through completion handlers. You can handle these errors to provide appropriate feedback to the user.","type":"text"}]},{"type":"paragraph","inlineContent":[{"inlineContent":[{"type":"text","text":"Example:"}],"type":"strong"}]},{"inlineContent":[{"text":"Swift","type":"text"}],"type":"paragraph"},{"syntax":null,"code":["PlaybackSDKManager.shared.initialize(apiKey: \"YOUR_API_KEY\") { result in"," switch result {"," case .success:"," print(\"Playback SDK initialized successfully.\")",""," let entryId = \"YOUR_ENTRY_ID\""," let authorizationToken = \"YOUR_AUTHORIZATION_TOKEN\" \/\/ optional",""," PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken)"," case .failure(let error):"," print(\"Error initializing Playback SDK: \\(error)\")"," }","}"],"type":"codeListing"}],"mediaPosition":"trailing","kind":"contentAndMedia"}]}],"kind":"tasks"}],"references":{"doc://PlaybackSDK/tutorials/Table-Of-Contents/Creating-a-Custom-Playback-Player-Plugin":{"kind":"article","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Creating-a-Custom-Playback-Player-Plugin","url":"\/tutorials\/table-of-contents\/creating-a-custom-playback-player-plugin","role":"article","title":"Creating a Custom Playback Player Plugin","type":"topic"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial#Error-Handling":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Error-Handling","url":"\/tutorials\/playbacksdk\/customplugintutorial#Error-Handling","role":"pseudoSymbol","type":"section","title":"Error Handling"},"doc://PlaybackSDK/tutorials/Table-Of-Contents":{"type":"topic","role":"overview","kind":"overview","title":"Introduction to PlaybackSDK","url":"\/tutorials\/table-of-contents","identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","abstract":[{"text":"Welcome to the PlaybackSDK tutorial! In this tutorial, you will learn how to integrate and use the PlaybackSDK in your iOS applications.","type":"text"}]},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/getstarted","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/customplugintutorial","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial"},"doc://PlaybackSDK/tutorials/Table-Of-Contents/Getting-Started":{"kind":"article","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Getting-Started","url":"\/tutorials\/table-of-contents\/getting-started","role":"article","title":"Getting Started","type":"topic"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Error-Handling":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Error-Handling","url":"\/tutorials\/playbacksdk\/getstarted#Error-Handling","role":"pseudoSymbol","type":"section","title":"Error Handling"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Installation":{"kind":"section","identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Installation","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"url":"\/tutorials\/playbacksdk\/getstarted#Installation","role":"pseudoSymbol","title":"Installation","type":"section"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Video-Player-Plugins-Optional":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Video-Player-Plugins-Optional","url":"\/tutorials\/playbacksdk\/getstarted#Video-Player-Plugins-Optional","role":"pseudoSymbol","type":"section","title":"Video Player Plugins (Optional)"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial#Video-Player-Plugins-Optional":{"kind":"section","identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Video-Player-Plugins-Optional","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"url":"\/tutorials\/playbacksdk\/customplugintutorial#Video-Player-Plugins-Optional","role":"pseudoSymbol","title":"Video Player Plugins (Optional)","type":"section"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/getstarted.json b/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/getstarted.json new file mode 100644 index 0000000..be7e823 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/tutorials/playbacksdk/getstarted.json @@ -0,0 +1 @@ +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/tutorials\/playbacksdk\/getstarted"]}],"kind":"project","schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"},"sections":[{"title":"Playback SDK Overview","estimatedTimeInMinutes":30,"kind":"hero","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}]},{"inlineContent":[{"type":"strong","inlineContent":[{"text":"Key Features:","type":"text"}]}],"type":"paragraph"},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"inlineContent":[{"text":"Abstraction:","type":"text"}],"type":"strong"},{"type":"text","text":" Hides the complexities of underlying video APIs, allowing you to focus on the core playback experience."}]}]},{"content":[{"inlineContent":[{"type":"strong","inlineContent":[{"text":"Flexibility:","type":"text"}]},{"type":"text","text":" Supports different video providers and allows the creation of custom playback plugins for extended functionalities."}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"inlineContent":[{"text":"Error Handling:","type":"text"}],"type":"strong"},{"text":" Provides mechanisms to handle potential issues during playback and notify your application.","type":"text"}],"type":"paragraph"}]}],"type":"unorderedList"}],"chapter":"Getting Started"},{"kind":"tasks","tasks":[{"contentSection":[{"kind":"contentAndMedia","content":[{"type":"paragraph","inlineContent":[{"text":"To install the Playback SDK, follow these steps:","type":"text"}]},{"type":"orderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Add the Playback SDK dependency to your project using Swift Package Manager."}]}]}]},{"type":"paragraph","inlineContent":[{"text":"Swift","type":"text"}]},{"code":["dependencies: ["," .package(url: \"https:\/\/github.com\/your-organization\/playback-sdk.git\", .branch(\"master\"))","]"],"type":"codeListing","syntax":null},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Import the "},{"type":"codeVoice","code":"PlaybackSDK"},{"text":" module in your Swift files.","type":"text"}]}]}],"start":2,"type":"orderedList"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Swift"}]},{"syntax":null,"code":["import PlaybackSDK"],"type":"codeListing"}],"mediaPosition":"trailing"}],"anchor":"Installation","stepsSection":[{"type":"step","content":[{"inlineContent":[{"inlineContent":[{"text":"Step 1:","type":"text"}],"type":"strong"},{"text":" Initialize the Playback SDK by providing your API key.","type":"text"}],"type":"paragraph"}],"caption":[],"media":null,"runtimePreview":null,"code":"InitializeSdkExample.swift"},{"runtimePreview":null,"code":"LoadHlsStreamTutorial.swift","caption":[],"content":[{"type":"paragraph","inlineContent":[{"inlineContent":[{"type":"text","text":"Step 2:"}],"type":"strong"},{"text":" Load HLS Stream by providing the entry ID and optional authorization token.","type":"text"}]}],"type":"step","media":null},{"code":"InstallPlayerPluginTutorial.swift","caption":[],"content":[{"type":"paragraph","inlineContent":[{"inlineContent":[{"text":"Step 3:","type":"text"}],"type":"strong"},{"type":"text","text":" Add player plugin. Note: This should be done in the AppDelegate."}]}],"type":"step","media":null,"runtimePreview":null},{"type":"step","code":"LoadPlayerViewTutorial.swift","caption":[],"runtimePreview":null,"content":[{"type":"paragraph","inlineContent":[{"inlineContent":[{"text":"Step 4:","type":"text"}],"type":"strong"},{"text":" Load the player view in your player view and handle errors.","type":"text"}]}],"media":null}],"title":"Installation"},{"title":"Video Player Plugins (Optional)","stepsSection":[{"code":null,"type":"step","caption":[],"media":null,"runtimePreview":null,"content":[{"inlineContent":[{"type":"strong","inlineContent":[{"type":"text","text":"Step 1:"}]},{"type":"text","text":" Implement your custom player plugin conforming to the "},{"type":"codeVoice","code":"VideoPlayerPlugin"},{"type":"text","text":" protocol."}],"type":"paragraph"}]},{"runtimePreview":null,"type":"step","caption":[],"content":[{"type":"paragraph","inlineContent":[{"inlineContent":[{"text":"Step 2:","type":"text"}],"type":"strong"},{"type":"text","text":" Register your custom plugin with the manager and use the selected plugin for playback."}]}],"media":null,"code":null}],"anchor":"Video-Player-Plugins-Optional","contentSection":[{"mediaPosition":"trailing","kind":"contentAndMedia","content":[{"inlineContent":[{"type":"text","text":"The Playback SDK supports extending functionalities through custom video player plugins. These plugins can provide extended functionalities or integrate with third-party video players. Refer to the full source code for details on creating custom plugins."}],"type":"paragraph"},{"type":"codeListing","syntax":"swift","code":["\/\/ Implement your custom player plugin conforming to VideoPlayerPlugin protocol","","\/\/ Register your custom plugin with the manager","let pluginManager = VideoPlayerPluginManager.shared","pluginManager.registerPlugin(YourCustomPlayerPlugin())","\/\/ Use the selected plugin for playback","pluginManager.selectedPlugin?.play()"]}]}]},{"stepsSection":[],"title":"Error Handling","anchor":"Error-Handling","contentSection":[{"mediaPosition":"trailing","content":[{"inlineContent":[{"text":"The library propagates errors through completion handlers. You can handle these errors to provide appropriate feedback to the user.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"strong","inlineContent":[{"type":"text","text":"Example:"}]}]},{"inlineContent":[{"text":"Swift","type":"text"}],"type":"paragraph"},{"code":["PlaybackSDKManager.shared.initialize(apiKey: \"YOUR_API_KEY\") { result in"," switch result {"," case .success:"," print(\"Playback SDK initialized successfully.\")",""," let entryId = \"YOUR_ENTRY_ID\""," let authorizationToken = \"YOUR_AUTHORIZATION_TOKEN\" \/\/ optional",""," PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken)"," case .failure(let error):"," print(\"Error initializing Playback SDK: \\(error)\")"," }","}"],"type":"codeListing","syntax":null}],"kind":"contentAndMedia"}]}]},{"kind":"callToAction","featuredEyebrow":"Tutorial","title":"Playback SDK Overview","action":{"type":"reference","overridingTitle":"Get started","isActive":true,"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial","overridingTitleInlineContent":[{"type":"text","text":"Get started"}]},"abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}]}],"metadata":{"title":"Playback SDK Overview","role":"project","categoryPathComponent":"Table-Of-Contents","category":"PlaybackSDK Tutorial"},"hierarchy":{"paths":[["doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/$volume","doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Getting-Started"]],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","modules":[{"projects":[{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted","sections":[{"kind":"task","reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Installation"},{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Video-Player-Plugins-Optional","kind":"task"},{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Error-Handling","kind":"task"}]}],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Getting-Started"},{"projects":[{"reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial","sections":[{"kind":"task","reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Video-Player-Plugins-Optional"},{"kind":"task","reference":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Error-Handling"}]}],"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Creating-a-Custom-Playback-Player-Plugin"}]},"references":{"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Error-Handling":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Error-Handling","url":"\/tutorials\/playbacksdk\/getstarted#Error-Handling","role":"pseudoSymbol","type":"section","title":"Error Handling"},"doc://PlaybackSDK/tutorials/Table-Of-Contents/Creating-a-Custom-Playback-Player-Plugin":{"kind":"article","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Creating-a-Custom-Playback-Player-Plugin","url":"\/tutorials\/table-of-contents\/creating-a-custom-playback-player-plugin","role":"article","title":"Creating a Custom Playback Player Plugin","type":"topic"},"LoadHlsStreamTutorial.swift":{"fileName":"LoadHlsStreamTutorial","content":["\/\/","\/\/ LoadHlsStreamTutorial.swift","\/\/ ","\/\/","\/\/ Created by Franco Driansetti on 27\/02\/2024.","\/\/","","import Foundation","","let entryId = \"YOUR_ENTRY_ID\"","let authorizationToken = \"YOUR_AUTHORIZATION_TOKEN\" \/\/ optional","","PlaybackUIView(entryId: entryId, authorizationToken: authorizationToken)"],"fileType":"","highlights":[],"identifier":"LoadHlsStreamTutorial.swift","syntax":"","type":"file"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/customplugintutorial","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial"},"doc://PlaybackSDK/tutorials/Table-Of-Contents/Getting-Started":{"kind":"article","abstract":[],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents\/Getting-Started","url":"\/tutorials\/table-of-contents\/getting-started","role":"article","title":"Getting Started","type":"topic"},"doc://PlaybackSDK/tutorials/Table-Of-Contents":{"type":"topic","role":"overview","kind":"overview","title":"Introduction to PlaybackSDK","url":"\/tutorials\/table-of-contents","identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","abstract":[{"text":"Welcome to the PlaybackSDK tutorial! In this tutorial, you will learn how to integrate and use the PlaybackSDK in your iOS applications.","type":"text"}]},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Video-Player-Plugins-Optional":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Video-Player-Plugins-Optional","url":"\/tutorials\/playbacksdk\/getstarted#Video-Player-Plugins-Optional","role":"pseudoSymbol","type":"section","title":"Video Player Plugins (Optional)"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted#Installation":{"kind":"section","identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted#Installation","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"url":"\/tutorials\/playbacksdk\/getstarted#Installation","role":"pseudoSymbol","title":"Installation","type":"section"},"InitializeSdkExample.swift":{"fileName":"InitializeSdkExample","content":["\/\/","\/\/ InitializeSdkExample.swift","\/\/ ","\/\/","\/\/ Created by Franco Driansetti on 27\/02\/2024.","\/\/","","import PlaybackSDK","","PlaybackSDKManager.shared.initialize(apiKey: \"YOUR_API_KEY\") { result in"," switch result {"," case .success:"," print(\"Playback SDK initialized successfully.\")"," case .failure(let error):"," print(\"Error initializing Playback SDK: \\(error)\")"," }","}"],"fileType":"","highlights":[],"identifier":"InitializeSdkExample.swift","syntax":"","type":"file"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/getstarted","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial#Video-Player-Plugins-Optional":{"kind":"section","identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Video-Player-Plugins-Optional","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"url":"\/tutorials\/playbacksdk\/customplugintutorial#Video-Player-Plugins-Optional","role":"pseudoSymbol","title":"Video Player Plugins (Optional)","type":"section"},"InstallPlayerPluginTutorial.swift":{"fileName":"InstallPlayerPluginTutorial","content":["\/\/","\/\/ InstallPlayerPluginTutorial.swift","\/\/","\/\/","\/\/ Created by Franco Driansetti on 27\/02\/2024.","\/\/","","import Foundation","","PlayBackSDKManager.shared.initialize(apiKey: settingsManager.apiKey, baseURL: settingsManager.baseURL) { result in"," switch result {"," case .success(let license):"," print(\"SDK initialized with license: \\(license)\")"," "," \/\/ Add player plugin"," let bitmovinPlugin = BitmovinPlayerPlugin()"," VideoPlayerPluginManager.shared.registerPlugin(bitmovinPlugin)"," "," case .failure(let error):"," print(\"SDK initialization failed with error: \\(error)\")"," }","}"],"fileType":"","highlights":[],"identifier":"InstallPlayerPluginTutorial.swift","syntax":"","type":"file"},"LoadPlayerViewTutorial.swift":{"content":["\/\/","\/\/ LoadPlayerViewTutorial.swift","\/\/ ","\/\/","\/\/ Created by Franco Driansetti on 27\/02\/2024.","\/\/","","import Foundation","","PlayBackSDKManager.shared.loadPlayer(entryID: settingsManager.entryId, authorizationToken: settingsManager.authorizationToken, onError: { error in"," \/\/ Handle the error here"," switch error {"," case .apiError(let statusCode, _):"," print(\"\\(statusCode)\")"," default:"," print(\"Error loading HLS stream in PlaybackUIView: \\(error.localizedDescription)\")"," }","})"],"fileName":"LoadPlayerViewTutorial","fileType":"","highlights":[],"identifier":"LoadPlayerViewTutorial.swift","syntax":"","type":"file"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial#Error-Handling":{"kind":"section","abstract":[{"type":"text","text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic."}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial#Error-Handling","url":"\/tutorials\/playbacksdk\/customplugintutorial#Error-Handling","role":"pseudoSymbol","type":"section","title":"Error Handling"}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/data/tutorials/table-of-contents.json b/docs/PlaybackSDK.doccarchive/data/tutorials/table-of-contents.json new file mode 100644 index 0000000..a3b1fe5 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/data/tutorials/table-of-contents.json @@ -0,0 +1 @@ +{"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"overview","metadata":{"categoryPathComponent":"Table-Of-Contents","title":"Introduction to PlaybackSDK","category":"PlaybackSDK Tutorial","role":"overview","estimatedTime":"1hr 0min"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents"},"sections":[{"title":"Introduction to PlaybackSDK","kind":"hero","action":{"isActive":true,"overridingTitle":"Get started","overridingTitleInlineContent":[{"type":"text","text":"Get started"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted","type":"reference"},"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Welcome to the PlaybackSDK tutorial! In this tutorial, you will learn how to integrate and use the PlaybackSDK in your iOS applications."}]}]},{"kind":"volume","chapters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"In this chapter, we’ll start by setting up the PlaybackSDK in your Xcode project and understanding its basic components."}]}],"image":"ios-marketing.png","tutorials":["doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"],"name":"Getting Started"},{"tutorials":["doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial"],"content":[{"type":"paragraph","inlineContent":[{"text":"In this chapter, we’ll learn how to create a custom Playback Player Plugin using your favorite video player.","type":"text"}]}],"image":"ios-marketing.png","name":"Creating a Custom Playback Player Plugin"}],"image":null,"content":[],"name":null},{"kind":"resources","tiles":[{"title":"Documentation","identifier":"documentation","content":[{"type":"paragraph","inlineContent":[{"text":"Browse and search the PlaybackSDK documentation.","type":"text"}]},{"type":"unorderedList","items":[{"content":[{"type":"paragraph","inlineContent":[{"isActive":true,"identifier":"https:\/\/github.com\/StreamAMG\/playback-sdk-ios\/tree\/main","type":"reference"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"isActive":true,"identifier":"https:\/\/streamamg.stoplight.io","type":"reference"}]}]}]}]}],"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Explore more resources for learning about PlaybackSDK."}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/tutorials\/table-of-contents"]}],"hierarchy":{"reference":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","paths":[]},"references":{"ios-marketing.png":{"variants":[{"url":"\/images\/ios-marketing.png","traits":["1x","light"]}],"type":"image","alt":"Creating a Custom Playback Player Plugin","identifier":"ios-marketing.png"},"https://github.com/StreamAMG/playback-sdk-ios/tree/main":{"identifier":"https:\/\/github.com\/StreamAMG\/playback-sdk-ios\/tree\/main","titleInlineContent":[{"text":"GitHub Repository","type":"text"}],"url":"https:\/\/github.com\/StreamAMG\/playback-sdk-ios\/tree\/main","type":"link","title":"GitHub Repository"},"doc://PlaybackSDK/tutorials/PlaybackSDK/CustomPluginTutorial":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/customplugintutorial","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/CustomPluginTutorial"},"https://streamamg.stoplight.io":{"identifier":"https:\/\/streamamg.stoplight.io","titleInlineContent":[{"text":"Stoplight Documentation","type":"text"}],"url":"https:\/\/streamamg.stoplight.io","title":"Stoplight Documentation","type":"link"},"doc://PlaybackSDK/tutorials/PlaybackSDK/GetStarted":{"type":"topic","role":"project","kind":"project","estimatedTime":"30min","title":"Playback SDK Overview","url":"\/tutorials\/playbacksdk\/getstarted","abstract":[{"text":"Playback SDK simplifies integrating video playback functionalities into OTT applications. It provides a unified interface for interacting with video APIs and managing playback logic.","type":"text"}],"identifier":"doc:\/\/PlaybackSDK\/tutorials\/PlaybackSDK\/GetStarted"},"doc://PlaybackSDK/tutorials/Table-Of-Contents":{"type":"topic","role":"overview","kind":"overview","title":"Introduction to PlaybackSDK","url":"\/tutorials\/table-of-contents","identifier":"doc:\/\/PlaybackSDK\/tutorials\/Table-Of-Contents","abstract":[{"text":"Welcome to the PlaybackSDK tutorial! In this tutorial, you will learn how to integrate and use the PlaybackSDK in your iOS applications.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/developer-og-twitter.jpg b/docs/PlaybackSDK.doccarchive/developer-og-twitter.jpg new file mode 100644 index 0000000..63c4835 Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/developer-og-twitter.jpg differ diff --git a/docs/PlaybackSDK.doccarchive/developer-og.jpg b/docs/PlaybackSDK.doccarchive/developer-og.jpg new file mode 100644 index 0000000..4db8408 Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/developer-og.jpg differ diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/init()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/init()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/init()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/name/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/name/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/name/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/pause()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/pause()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/pause()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/play()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/play()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/play()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/playerview(hlsurlstring:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/removeplayer()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/removeplayer()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/removeplayer()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/setup()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/setup()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/setup()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/version/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/version/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerplugin/version/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accentcolor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-24jl2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(activationpoint:)-2fgn6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(addtraits:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hidden:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(hint:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(identifier:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(inputlabels:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(label:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(label:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(label:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(removetraits:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(selectionidentifier:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(sortpriority:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(value:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(value:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibility(value:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(action:label:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-2qqmz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-3yhkn/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaction(named:_:)-752ik/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactions(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-53ntt/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityactivationpoint(_:)-7nfm8/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityaddtraits(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityadjustableaction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychartdescriptor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitychildren(children:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-2ytxg/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-3x90l/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-57t73/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7622k/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-7ee7j/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-883iw/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-88mk3/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitycustomcontent(_:_:importance:)-8g1kv/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitydirecttouch(_:options:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityelement(children:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityfocused(_:equals:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityheading(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhidden(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-4nhze/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-7pklb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityhint(_:)-8ro7f/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityidentifier(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityignoresinvertcolors(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-6r70h/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-8ga6r/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityinputlabels(_:)-la1o/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-1cph1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7adx6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabel(_:)-7t49g/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylabeledpair(role:id:in:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitylinkedgroup(id:in:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityremovetraits(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrepresentation(representation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrespondstouserinteraction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-6cl28/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8doyu/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-8hu97/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:)-hiyo/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-3cq7s/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-55pvz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-5kzol/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entryid:entrylabel:)-85j75/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-2gmuo/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-4v9g8/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-5yu91/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:entries:entrylabel:)-7a5jb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3czt7/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-3ga74/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-47ctf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotor(_:textranges:)-5onnj/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityrotorentry(id:in:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityscrollaction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityshowslargecontentviewer(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitysortpriority(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilitytextcontenttype(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-51sfk/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-5agra/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityvalue(_:)-78lqf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/accessibilityzoomaction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(ispresented:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/actionsheet(item:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-1p9c8/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-8nchf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:)-z4fn/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1u0om/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-1uhz6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:actions:message:)-py9q/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-75se/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-89yi/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:)-9pzr0/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1kuba/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-1ky1b/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(_:ispresented:presenting:actions:message:)-71jcy/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(ispresented:error:actions:message:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(item:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(item:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alert(item:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-8fo7v/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alignmentguide(_:computevalue:)-92wpz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/alloweddynamicrange(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowshittesting(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/allowstightening(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/anchorpreference(key:value:transform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:body:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:body:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:body:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:value:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:value:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/animation(_:value:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-4l6lv/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/aspectratio(_:contentmode:)-6tc4s/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocapitalization(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/autocorrectiondisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:ignoressafeareaedges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-15a03/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(_:in:fillstyle:)-9sb3l/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(alignment:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(ignoressafeareaedges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-5ukrb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/background(in:fillstyle:)-8t9nl/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundpreferencevalue(_:alignment:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/backgroundstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-5st6w/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-6gpa2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-7s4kd/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badge(_:)-8bw3q/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/badgeprominence(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/baselineoffset(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blendmode(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blendmode(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blendmode(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/blur(radius:opaque:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/body/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/body/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/body/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/bold(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/bold(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/bold(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/border(_:width:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/border(_:width:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/border(_:width:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/brightness(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/brightness(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/brightness(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonbordershape(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonrepeatbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7bm2s/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/buttonstyle(_:)-7q62k/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipped(antialiased:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/clipshape(_:style:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coloreffect(_:isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorinvert()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorinvert()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorinvert()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colormultiply(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/colorscheme(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/compositinggroup()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/compositinggroup()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/compositinggroup()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-3xp49/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-5osrs/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:)-9c7k1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-18uq9/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-1lz4c/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:actions:message:)-5fuv2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1aysx/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-1vfc1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:)-7k3fz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-2v6al/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-6xoha/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/confirmationdialog(_:ispresented:titlevisibility:presenting:actions:message:)-8n9w1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(_:for:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerbackground(for:alignment:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:alignment:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containerrelativeframe(_:count:span:spacing:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containershape(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containershape(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/containershape(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-2nato/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:_:for:)-txh9/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentmargins(_:for:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:_:eofill:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contentshape(_:eofill:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contenttransition(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(forselectiontype:menu:primaryaction:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contextmenu(menuitems:preview:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contrast(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contrast(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/contrast(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlgroupstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlsize(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlsize(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/controlsize(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/coordinatespace(name:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/cornerradius(_:antialiased:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/datepickerstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultappstorage(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultfocus(_:_:priority:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaulthovereffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/defaultscrollanchor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deferssystemgestures(on:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/deletedisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogicon(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-28av9/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-2lazw/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(_:issuppressed:)-99pj5/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dialogsuppressiontoggle(issuppressed:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disableautocorrection(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/disclosuregroupstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/distortioneffect(_:maxsampleoffset:isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/draggable(_:preview:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/drawinggroup(opaque:colormode:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dropdestination(for:action:istargeted:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-4v6j4/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/dynamictypesize(_:)-8zqiy/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/edgesignoringsafearea(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environment(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/environmentobject(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogbrowseroptions(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-4sto5/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-7gjj7/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogconfirmationlabel(_:)-9hjrp/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogcustomizationid(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogdefaultdirectory(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogimportsunresolvedaliases(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-2ip4n/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-67rn6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogmessage(_:)-dd3u/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filedialogurlenabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-29wbp/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttype:defaultfilename:oncompletion:)-3g9ko/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-8tupx/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:document:contenttypes:defaultfilename:oncompletion:oncancellation:)-o4li/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-1twyd/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttype:oncompletion:)-2e7rz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-6xv6m/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:documents:contenttypes:oncompletion:oncancellation:)-npwh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:item:contenttypes:defaultfilename:oncompletion:oncancellation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporter(ispresented:items:contenttypes:oncompletion:oncancellation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-7pleq/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-8t5re/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileexporterfilenamelabel(_:)-ij1k/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:allowsmultipleselection:oncompletion:oncancellation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fileimporter(ispresented:allowedcontenttypes:oncompletion:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:file:oncompletion:oncancellation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/filemover(ispresented:files:oncompletion:oncancellation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/finddisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/findnavigator(ispresented:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fixedsize(horizontal:vertical:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/flipsforrighttoleftlayoutdirection(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusable(_:interactions:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focused(_:equals:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-1g0dd/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedobject(_:)-6gnqz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-3301g/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedsceneobject(_:)-8fmby/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-1qpp3/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedscenevalue(_:_:)-6shvo/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-55vrz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focusedvalue(_:_:)-7hm2d/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/focuseffectdisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/font(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/font(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/font(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontdesign(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontweight(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontweight(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontweight(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fontwidth(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundcolor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/foregroundstyle(_:_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/formstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/formstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/formstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(minwidth:idealwidth:maxwidth:minheight:idealheight:maxheight:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/frame(width:height:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(ispresented:ondismiss:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/fullscreencover(item:ondismiss:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gaugestyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/geometrygroup()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/geometrygroup()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/geometrygroup()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gesture(_:including:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/grayscale(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/grayscale(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/grayscale(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellanchor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellcolumns(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcellunsizedaxes(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/gridcolumnalignment(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/groupboxstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/handlesexternalevents(preferring:allowing:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/headerprominence(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-1en1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-3sq7v/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/help(_:)-8cfgd/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hidden()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hidden()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hidden()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/highprioritygesture(_:including:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffect(_:isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/hovereffectdisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/huerotation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/huerotation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/huerotation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/id(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/id(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/id(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ignoressafearea(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/imagescale(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/imagescale(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/imagescale(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/indexviewstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/init(hlsurlstring:playerconfig:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspector(ispresented:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/inspectorcolumnwidth(min:ideal:max:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactionactivitytrackingtag(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/interactivedismissdisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/invalidatablecontent(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/italic(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/italic(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/italic(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/itemprovider(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/kerning(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/kerning(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/kerning(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardshortcut(_:modifiers:localization:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyboardtype(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:repeating:content:keyframes:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/keyframeanimator(initialvalue:trigger:content:keyframes:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labeledcontentstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelshidden()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelshidden()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelshidden()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/labelstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layereffect(_:maxsampleoffset:isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutdirectionbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutpriority(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/layoutvalue(key:value:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linelimit(_:reservesspace:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linespacing(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linespacing(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/linespacing(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-730o0/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listitemtint(_:)-9oyri/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowbackground(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowinsets(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparator(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowseparatortint(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listrowspacing(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparator(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionseparatortint(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-1297l/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/listsectionspacing(_:)-71o7f/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/liststyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/liststyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/liststyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/luminancetoalpha()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/mask(alignment:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/matchedgeometryeffect(id:in:properties:anchor:issource:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuactiondismissbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuindicator(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuorder(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuorder(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menuorder(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menustyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menustyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/menustyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/minimumscalefactor(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/modifier(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/modifier(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/modifier(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaced(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaced(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaced(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaceddigit()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaceddigit()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/monospaceddigit()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/movedisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/multilinetextalignment(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarbackbuttonhidden(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbarhidden(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(leading:trailing:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbaritems(trailing:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-2tvbb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-8f9fq/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:)-90yey/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-4o2oy/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-5sstf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitle(_:displaymode:)-7pj7v/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationbartitledisplaymode(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(for:destination:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(ispresented:destination:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdestination(item:destination:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-2ql2l/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:)-4gkje/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-11ys1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-1s345/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-3wrqo/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationdocument(_:preview:)-9r1fc/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewcolumnwidth(min:ideal:max:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationsplitviewstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2cbbq/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-2hqj/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-5y36i/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-9neej/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationtitle(_:)-voku/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/navigationviewstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(x:y:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(x:y:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/offset(x:y:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onappear(perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onappear(perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onappear(perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-302sn/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:initial:_:)-6p46k/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onchange(of:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinueuseractivity(_:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-2e5rp/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/oncontinuoushover(coordinatespace:perform:)-6ujjf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondisappear(perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrag(_:preview:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4bjnb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:delegate:)-4vyza/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6oggf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-6vsp/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-7lgd2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ondrop(of:istargeted:perform:)-81vs3/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onhover(perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onhover(perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onhover(perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(_:phases:action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(characters:phases:action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(keys:phases:action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onkeypress(phases:action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:perform:onpressingchanged:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:maximumdistance:pressing:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:perform:onpressingchanged:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onlongpressgesture(minimumduration:pressing:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onopenurl(perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onpreferencechange(_:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onreceive(_:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/onsubmit(of:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-1ek8g/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:coordinatespace:perform:)-9kxks/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/ontapgesture(count:perform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/opacity(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/opacity(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/opacity(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:alignment:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:ignoressafeareaedges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(_:in:fillstyle:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlay(alignment:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/overlaypreferencevalue(_:alignment:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-8la2x/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:)-94ovh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/padding(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/paletteselectioneffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/persistentsystemoverlays(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:content:animation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/phaseanimator(_:trigger:content:animation:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/pickerstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(ispresented:attachmentanchor:arrowedge:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/popover(item:attachmentanchor:arrowedge:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(x:y:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(x:y:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/position(x:y:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preference(key:value:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preference(key:value:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preference(key:value:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/preferredcolorscheme(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackground(alignment:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationbackgroundinteraction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcompactadaptation(horizontal:vertical:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcontentinteraction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationcornerradius(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdetents(_:selection:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/presentationdragindicator(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewcontext(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdevice(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewdisplayname(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewinterfaceorientation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/previewlayout(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/privacysensitive(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/progressviewstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/projectioneffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/redacted(reason:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/redacted(reason:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/redacted(reason:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/refreshable(action:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/refreshable(action:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/refreshable(action:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-7vs1w/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/renameaction(_:)-dhl7/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/replacedisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotation3deffect(_:axis:anchor:anchorz:perspective:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/rotationeffect(_:anchor:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-8xuc6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareainset(edge:alignment:spacing:content:)-9xmw/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-1cwxh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:)-8hgvb/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/safeareapadding(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/saturation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/saturation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/saturation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofill()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofill()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofill()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofit()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofit()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaledtofit()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-478js/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(_:anchor:)-6nq52/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scaleeffect(x:y:anchor:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scenepadding(_:edges:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollbouncebehavior(_:axes:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollclipdisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollcontentbackground(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolldismisseskeyboard(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicators(_:axes:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(onappear:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollindicatorsflash(trigger:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrollposition(id:anchor:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltargetlayout(isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(_:axis:transition:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/scrolltransition(topleading:bottomtrailing:axis:transition:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-1v74d/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9floz/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:ispresented:placement:prompt:token:)-9fwt1/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-34tbo/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-3ns5o/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:editabletokens:placement:prompt:token:)-8jius/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-1yx1t/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-67lnp/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:ispresented:placement:prompt:)-6slax/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-5aijf/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-6x0q/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:)-9e770/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4fef2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-4ot2g/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:placement:prompt:suggestions:)-9wb1c/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-183xm/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-5gd7f/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:ispresented:placement:prompt:token:)-v6go/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-3i3vq/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-6jzmh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:placement:prompt:token:)-7pbb6/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-1fbry/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-4gir7/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:ispresented:placement:prompt:token:)-7urns/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-11k2a/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-5drgj/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchable(text:tokens:suggestedtokens:placement:prompt:token:)-6t3gw/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-95mzh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchcompletion(_:)-9im0b/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchdictationbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchpresentationtoolbarbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:activation:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchscopes(_:scopes:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/searchsuggestions(_:for:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/selectiondisabled(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(_:trigger:condition:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sensoryfeedback(trigger:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/shadow(color:radius:x:y:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(ispresented:ondismiss:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/sheet(item:ondismiss:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/simultaneousgesture(_:including:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechadjustedpitch(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechalwaysincludespunctuation(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechannouncementsqueued(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/speechspellsoutcharacters(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/springloadingbehavior(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbar(hidden:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/statusbarhidden(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/strikethrough(_:pattern:color:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitlabel(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitscope(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitscope(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/submitscope(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/swipeactions(edge:allowsfullswipe:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:isactive:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffect(_:options:value:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symboleffectsremoved(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolrenderingmode(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/symbolvariant(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabitem(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabitem(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabitem(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablecolumnheaders(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tablestyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tabviewstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tag(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tag(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tag(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(id:priority:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(priority:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(priority:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/task(priority:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcase(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcase(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcase(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textcontenttype(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/texteditorstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textfieldstyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textinputautocapitalization(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textscale(_:isenabled:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textselection(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textselection(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/textselection(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-5usev/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tint(_:)-68ihh/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/togglestyle(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(_:for:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-7wl29/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(content:)-9r9cc/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(id:content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbar(removing:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-318bv/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarbackground(_:for:)-3faty/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarcolorscheme(_:for:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbarrole(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitledisplaymode(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/toolbartitlemenu(content:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tracking(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tracking(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/tracking(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(_:body:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transaction(value:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformanchorpreference(key:value:transform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformeffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformenvironment(_:transform:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transformpreference(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transition(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transition(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/transition(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/truncationmode(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-3rtbx/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-58dqq/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typeselectequivalent(_:)-xox2/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-4ax4k/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/typesettinglanguage(_:isenabled:)-70p7f/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/underline(_:pattern:color:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/unredacted()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/unredacted()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/unredacted()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:element:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/useractivity(_:isactive:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/view-implementations/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/view-implementations/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/view-implementations/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/visualeffect(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/zindex(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/zindex(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/bitmovinplayerview/zindex(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/documentation/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/documentation/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/documentation/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/apierror(statuscode:message:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/error-implementations/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/error-implementations/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/error-implementations/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/initializationerror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/initializationerror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/initializationerror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplaybackdataurl/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidplayerinformationurl/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/invalidresponseplaybackdata/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/loadhlsstreamerror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/loadhlsstreamerror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/loadhlsstreamerror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/localizeddescription/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/localizeddescription/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/localizeddescription/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/networkerror(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/networkerror(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbackapierror/networkerror(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/init()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/init()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/init()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/initialize(apikey:baseurl:completion:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/loadplayer(entryid:authorizationtoken:onerror:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/shared/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/shared/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/playbacksdkmanager/shared/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/!=(_:_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/!=(_:_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/!=(_:_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/equatable-implementations/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/equatable-implementations/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/equatable-implementations/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/error-implementations/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/error-implementations/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/error-implementations/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/initializationerror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/initializationerror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/initializationerror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/loadhlsstreamerror/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/loadhlsstreamerror/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/loadhlsstreamerror/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/localizeddescription/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/localizeddescription/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/localizeddescription/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/missinglicense/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/missinglicense/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/sdkerror/missinglicense/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/name/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/name/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/name/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/pause()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/pause()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/pause()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/play()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/play()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/play()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/playerview(hlsurlstring:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/removeplayer()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/removeplayer()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/removeplayer()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/setup()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/setup()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/setup()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/version/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/version/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerplugin/version/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/objectwillchange/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/observableobject-implementations/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:)/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:)/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/registerplugin(_:)/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/removeplugin()/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/removeplugin()/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/removeplugin()/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/selectedplugin/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/shared/index.html b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/shared/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/documentation/playbacksdk/videoplayerpluginmanager/shared/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/favicon.ico b/docs/PlaybackSDK.doccarchive/favicon.ico new file mode 100644 index 0000000..5231da6 Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/favicon.ico differ diff --git a/docs/PlaybackSDK.doccarchive/favicon.svg b/docs/PlaybackSDK.doccarchive/favicon.svg new file mode 100644 index 0000000..c54c53f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/favicon.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/images/ios-marketing.png b/docs/PlaybackSDK.doccarchive/images/ios-marketing.png new file mode 100644 index 0000000..2e33d0e Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/images/ios-marketing.png differ diff --git a/docs/PlaybackSDK.doccarchive/img/added-icon.d6f7e47d.svg b/docs/PlaybackSDK.doccarchive/img/added-icon.d6f7e47d.svg new file mode 100644 index 0000000..6bb6d89 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/img/added-icon.d6f7e47d.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/img/deprecated-icon.015b4f17.svg b/docs/PlaybackSDK.doccarchive/img/deprecated-icon.015b4f17.svg new file mode 100644 index 0000000..a0f8008 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/img/deprecated-icon.015b4f17.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/img/modified-icon.f496e73d.svg b/docs/PlaybackSDK.doccarchive/img/modified-icon.f496e73d.svg new file mode 100644 index 0000000..3e0bd6f --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/img/modified-icon.f496e73d.svg @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/img/no-image@2x.df2a0a50.png b/docs/PlaybackSDK.doccarchive/img/no-image@2x.df2a0a50.png new file mode 100644 index 0000000..041394e Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/img/no-image@2x.df2a0a50.png differ diff --git a/docs/PlaybackSDK.doccarchive/index.html b/docs/PlaybackSDK.doccarchive/index.html new file mode 100644 index 0000000..d4fb7e2 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/index.html @@ -0,0 +1 @@ +Documentation
\ No newline at end of file diff --git a/docs/PlaybackSDK.doccarchive/index/availability.index b/docs/PlaybackSDK.doccarchive/index/availability.index new file mode 100644 index 0000000..8106a9d Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/index/availability.index differ diff --git a/docs/PlaybackSDK.doccarchive/index/data.mdb b/docs/PlaybackSDK.doccarchive/index/data.mdb new file mode 100755 index 0000000..49fa589 Binary files /dev/null and b/docs/PlaybackSDK.doccarchive/index/data.mdb differ diff --git a/docs/PlaybackSDK.doccarchive/index/index.json b/docs/PlaybackSDK.doccarchive/index/index.json new file mode 100644 index 0000000..e5d5604 --- /dev/null +++ b/docs/PlaybackSDK.doccarchive/index/index.json @@ -0,0 +1 @@ +{"interfaceLanguages":{"swift":[{"children":[{"title":"Getting Started","type":"groupMarker"},{"path":"\/tutorials\/playbacksdk\/getstarted","title":"Playback SDK Overview","type":"project"},{"title":"Creating a Custom Playback Player Plugin","type":"groupMarker"},{"path":"\/tutorials\/playbacksdk\/customplugintutorial","title":"Playback SDK Overview","type":"project"}],"path":"\/tutorials\/table-of-contents","title":"Introduction to PlaybackSDK","type":"overview"},{"children":[{"title":"Articles","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/documentation","title":"TESWT","type":"symbol"},{"title":"Classes","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/init()","title":"init()","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/name","title":"let name: String","type":"property"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/version","title":"let version: String","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/pause()","title":"func pause()","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/play()","title":"func play()","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/playerview(hlsurlstring:)","title":"func playerView(hlsURLString: String) -> AnyView","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/removeplayer()","title":"func removePlayer()","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin\/setup()","title":"func setup()","type":"method"}],"path":"\/documentation\/playbacksdk\/bitmovinplayerplugin","title":"BitmovinPlayerPlugin","type":"class"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/playbacksdkmanager\/init()","title":"init()","type":"init"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/playbacksdkmanager\/initialize(apikey:baseurl:completion:)","title":"func initialize(apiKey: String, baseURL: String?, completion: (Result) -> Void)","type":"method"},{"path":"\/documentation\/playbacksdk\/playbacksdkmanager\/loadplayer(entryid:authorizationtoken:onerror:)","title":"func loadPlayer(entryID: String, authorizationToken: String, onError: ((PlayBackAPIError) -> Void)?) -> some View","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/playbacksdkmanager\/shared","title":"static let shared: PlayBackSDKManager","type":"property"}],"path":"\/documentation\/playbacksdk\/playbacksdkmanager","title":"PlayBackSDKManager","type":"class"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/selectedplugin","title":"var selectedPlugin: VideoPlayerPlugin?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/registerplugin(_:)","title":"func registerPlugin(VideoPlayerPlugin)","type":"method"},{"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/removeplugin()","title":"func removePlugin()","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/shared","title":"static let shared: VideoPlayerPluginManager","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/objectwillchange","title":"var objectWillChange: ObservableObjectPublisher","type":"property"}],"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager\/observableobject-implementations","title":"ObservableObject Implementations","type":"symbol"}],"path":"\/documentation\/playbacksdk\/videoplayerpluginmanager","title":"VideoPlayerPluginManager","type":"class"},{"title":"Protocols","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/name","title":"var name: String","type":"property"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/version","title":"var version: String","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/pause()","title":"func pause()","type":"method"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/play()","title":"func play()","type":"method"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/playerview(hlsurlstring:)","title":"func playerView(hlsURLString: String) -> AnyView","type":"method"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/removeplayer()","title":"func removePlayer()","type":"method"},{"path":"\/documentation\/playbacksdk\/videoplayerplugin\/setup()","title":"func setup()","type":"method"}],"path":"\/documentation\/playbacksdk\/videoplayerplugin","title":"VideoPlayerPlugin","type":"protocol"},{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/init(hlsurlstring:playerconfig:)","title":"init(hlsURLString: String, playerConfig: PlayerConfig)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/body","title":"var body: some View","type":"property"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accentcolor(_:)","title":"func accentColor(Color?) -> some View","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-24jl2","title":"func accessibility(activationPoint: CGPoint) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(activationpoint:)-2fgn6","title":"func accessibility(activationPoint: UnitPoint) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(addtraits:)","title":"func accessibility(addTraits: AccessibilityTraits) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hidden:)","title":"func accessibility(hidden: Bool) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(hint:)","title":"func accessibility(hint: Text) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(identifier:)","title":"func accessibility(identifier: String) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(inputlabels:)","title":"func accessibility(inputLabels: [Text]) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(label:)","title":"func accessibility(label: Text) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(removetraits:)","title":"func accessibility(removeTraits: AccessibilityTraits) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(selectionidentifier:)","title":"func accessibility(selectionIdentifier: AnyHashable) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(sortpriority:)","title":"func accessibility(sortPriority: Double) -> ModifiedContent","type":"method"},{"deprecated":true,"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibility(value:)","title":"func accessibility(value: Text) -> ModifiedContent","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(_:_:)","title":"func accessibilityAction(AccessibilityActionKind, () -> Void) -> ModifiedContent","type":"method"},{"path":"\/documentation\/playbacksdk\/bitmovinplayerview\/accessibilityaction(action:label:)","title":"func accessibilityAction