# flutter_superplayer **Repository Path**: leanflutter/flutter_superplayer ## Basic Information - **Project Name**: flutter_superplayer - **Description**: 适用于 Flutter 的腾讯云超级播放器插件 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2023-04-22 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # flutter_superplayer 适用于 Flutter 的腾讯云超级播放器插件 > # **该插件API尚未稳定,请谨慎使用** [![pub version][pub-image]][pub-url] [pub-image]: https://img.shields.io/pub/v/flutter_superplayer.svg [pub-url]: https://pub.dev/packages/flutter_superplayer - [快速开始](#%E5%BF%AB%E9%80%9F%E5%BC%80%E5%A7%8B) - [安装](#%E5%AE%89%E8%A3%85) - [用法](#%E7%94%A8%E6%B3%95) - [相关链接](#%E7%9B%B8%E5%85%B3%E9%93%BE%E6%8E%A5) - [许可证](#%E8%AE%B8%E5%8F%AF%E8%AF%81) ## 快速开始 ### 安装 将此添加到包的 pubspec.yaml 文件中: ```yaml dependencies: flutter_superplayer: ^0.0.3 ``` 或 ```yaml dependencies: flutter_superplayer: git: url: https://github.com/leanflutter/flutter_superplayer.git ref: main ``` 您可以从命令行安装软件包: ```bash $ flutter packages get ``` ### 用法 ```dart import 'package:flutter_superplayer/flutter_superplayer.dart'; SuperPlayerController _playerController = SuperPlayerController(); SuperPlayerView( controller: _playerController, ) ``` > 请查看这个插件的示例应用,以了解完整的用法。 ## 相关链接 - https://github.com/tencentyun/SuperPlayer_Android - https://github.com/tencentyun/SuperPlayer_iOS ## 许可证 ``` MIT License Copyright (c) 2021 LiJianying Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ```