vk_video 0.0.3
vk_video: ^0.0.3 copied to clipboard
The vk_video package simplifies the integration of VK video playback into your Flutter apps. It supports the VK Video API, allowing easy embedding and control for a seamless media experience.
vk_video #
The vk_video package simplifies the integration of VK video playback into your Flutter apps. It supports the VK Video API, allowing easy embedding and control for a seamless media experience.
Show some ❤️ and star the repo to support the project!
Getting Started #
To use this package, add it to your pubspec.yaml
:
dependencies:
vk_video: ^0.0.3
or run the command
flutter pub add vk_video
Using the player #
import
import 'package:vk_video/vk_video.dart';
VKVideo(
videoOId: '-22822305',
videoId: '456241864',
),
To add the permission for internet access in your Android app, you need to include it in your AndroidManifest.xml file. Here’s how to do that:
<uses-permission android:name="android.permission.INTERNET"/>