simple_video_player 0.0.1
simple_video_player: ^0.0.1 copied to clipboard
A Simple video player built with material design to enhance developer and user experience
Simple Video Player #
A Simple video player built using video_player Supports both android and iOS that requires low code to enhance developer experience and Material design to enhance user experience.
Features #
- Simple to Use
- Play video from Network or File
- Fullscreen support
- Supports your app theme color
- Orientation switch
Getting started #
In your pubspec.yaml file within your Flutter Project add simple_video_player under dependencies
dependencies:
simple_video_player: <latest_version>
Usage #
SimpleVideoPlayer(
themeColor: Colors.blue // Use your theme color
url: 'VIDEO_URL',
path: 'FILE_PATH',
autoPlay: false,
looping: false,
);