flutter_to_airplay 1.0.4 copy "flutter_to_airplay: ^1.0.4" to clipboard
flutter_to_airplay: ^1.0.4 copied to clipboard

outdated

Flutter plugin that offers two widgets, one to play a video for given url or file path using native AVPlayer and second with an option to airplay it on available Apple devices.

flutter_to_airplay #

Flutter plugin that offers two widgets, one to play a video for given url or file path using native AVPlayer and second with an option to airplay it on available Apple devices.

Getting Started #

This plugin provides two widgets,

1- AirPlayRoutePickerView #

Its tintColor, activeTintColor and backgroundColor, can be set to suit the overall theme of application.

AirPlayRoutePickerView(
                tintColor: Colors.white,
                activeTintColor: Colors.white,
                backgroundColor: Colors.transparent,
              )

2- FlutterAVPlayerView #

For now it supports either local file added to flutter project, or a video url.

To play a network video for given url:

FlutterAVPlayerView(
              urlString:
                  'https://flutter.github.io/assets-for-api-docs/assets/videos/butterfly.mp4',
            ),

To play a local video added to the flutter project:

child: FlutterAVPlayerView(
              filePath: 'assets/videos/butterfly.mp4',
            ),

Screenshots #

Video iPhone Airplay iPhone Video iPad Airplay iPad
iPhoneVideo_Butterfly iPadVideo_Butterfly AirPlayiPhone AirPlayiPad

TODO: #

  • ✅ Allow videos add to the Flutter project.
  • ❌ Allow videos from more sources, Youtube, etc.

Disclaimers: #

  • Please suggest if you want a feature added to this utility
  • Please feel free to add any issues or open PRs, I will be actively looking to add to these utilities.

Credit: Inspired by Package #

FlutterAirplayPlugin #

41
likes
40
points
8.86k
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter plugin that offers two widgets, one to play a video for given url or file path using native AVPlayer and second with an option to airplay it on available Apple devices.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_to_airplay