cached_video_player_plus 1.0.0 cached_video_player_plus: ^1.0.0 copied to clipboard
Original video_player plugin with the superpower of caching embedded in Android and iOS.
Cached Video Player Plus #
Original video_player plugin with the SUPER-POWER of caching embedded in Android and iOS platforms.
Getting Started #
1. Add dependency #
Add the cached_video_player_plus
package to your pubspec.yaml
file:
dependencies:
cached_video_player_plus: ^1.0.0
2. Follow the installation instructions #
Follow the installation instructions of video_player plugin.
3. Import the package #
Import the cached_video_player_plus
package into your Dart file:
import 'package:cached_video_player_plus/cached_video_player_plus.dart';
4. Use the package #
If you are already using the video_player plugin
- Use the
CachedVideoPlayerPlusController
class instead of theVideoPlayerController
. - Use the
CachedVideoPlayerPlus
class instead of theVideoPlayer
. - Use the
CachedVideoPlayerPlusValue
class instead of theVideoPlayerValue
.
If you are not using the video_player plugin
- Create a
CachedVideoPlayerPlusController
instance and initialize it.
final controller = CachedVideoPlayerPlusController.network(
"https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4",
)..initialize().then((value) {
controller.play();
setState(() {});
});
- Pass the controller to the
CachedVideoPlayerPlus
widget.
CachedVideoPlayerPlus(controller),
OR
return Scaffold(
body: Center(
child: controller.value.isInitialized
? AspectRatio(
aspectRatio: controller.value.aspectRatio,
child: CachedVideoPlayerPlus(controller),
)
: const CircularProgressIndicator(),
),
);
Credits #
This package is a cloned and modified version of the cached_video_player package which is no longer maintained.
The aim of this package is to support the latest version of Flutter with AGP 8+ support.