flutter_bunny_video_player_ios 0.0.1 copy "flutter_bunny_video_player_ios: ^0.0.1" to clipboard
flutter_bunny_video_player_ios: ^0.0.1 copied to clipboard

PlatformiOS

A Flutter plugin that provides native iOS video player using Bunny Stream's video streaming service

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_bunny_video_player_ios/flutter_bunny_video_player_ios.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: const Center(
          child: SizedBox(
            child: BunnyPlayerView(
              accessKey: null,
              videoId: "1e5b2551-adde-4ee9-b5b3-876c58ebfd33",
              libraryId: 316762,
              expires: 20250922120000,
              token:
                  "db6ba6794ebdccedfc9e7719ce6eb4e8700b2ee4b0159fb3b8b311fd99ade91f",
              // Flutter asset path
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
150
points
36
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that provides native iOS video player using Bunny Stream's video streaming service

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on flutter_bunny_video_player_ios

Packages that implement flutter_bunny_video_player_ios