AirKit

main

AirPlay SwiftUI Views
heestand-xyz/AirKit

AirKit

AirPlay SwiftUI Views

Add to App

  • File / Swift Packages / Add Package Dependecy
  • Search for AirKit by hexagons
  • Add Up to Next Major from 1.0.0

Example

import SwiftUI
import AirKit

struct ContentView: View {
    var body: some View {
        Text("Hello AirPlay")
            .airPlay()
    }
}

You can also Air a View that is not on the main screen:

Air.play(AnyView(Image(systemName: "airplayvideo")))

To listen to the connection call:

Air.connection { connected in
    let isAirPaying: Bool = connected
}

Add to Package

.package(url: "https://github.com/hexagons/AirKit.git", from: "1.0.0")

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Apr 04 2024 04:14:05 GMT-0900 (Hawaii-Aleutian Daylight Time)