byteark_player_flutter 1.1.2
byteark_player_flutter: ^1.1.2 copied to clipboard
ByteArkPlayerFlutter is a Flutter plugin for the ByteArk Player, designed to enable seamless video playback and advanced player management within your Flutter applications.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add byteark_player_flutterWith Flutter:
$ flutter pub add byteark_player_flutterThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
byteark_player_flutter: ^1.1.2Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:byteark_player_flutter/data/ads/byteark_player_ads_data.dart';
import 'package:byteark_player_flutter/data/ads/byteark_player_ads_error_data.dart';
import 'package:byteark_player_flutter/data/ads/byteark_player_playback_error.dart';
import 'package:byteark_player_flutter/data/byteark_player_config.dart';
import 'package:byteark_player_flutter/data/byteark_player_event_types.dart';
import 'package:byteark_player_flutter/data/byteark_player_item.dart';
import 'package:byteark_player_flutter/data/byteark_player_license_key.dart';
import 'package:byteark_player_flutter/data/byteark_player_media_track.dart';
import 'package:byteark_player_flutter/data/byteark_player_native_event.dart';
import 'package:byteark_player_flutter/data/byteark_player_subtitle_size.dart';
import 'package:byteark_player_flutter/domain/byteark_player_listener.dart';
import 'package:byteark_player_flutter/domain/event_channel/byteark_player_event_channel.dart';
import 'package:byteark_player_flutter/domain/method_channel/byteark_player_controller.dart';
import 'package:byteark_player_flutter/domain/method_channel/byteark_player_controller_method_channel.dart';
import 'package:byteark_player_flutter/domain/method_channel/byteark_player_controller_platform_interface.dart';
import 'package:byteark_player_flutter/presentation/byteark_player.dart';