ncz_flutter_video 0.0.2 copy "ncz_flutter_video: ^0.0.2" to clipboard
ncz_flutter_video: ^0.0.2 copied to clipboard

通用播放器组件,支持暂停、快进、重复、全屏横屏播放、声音大小控制与屏蔽、视频封面、自动播放、循环播放、缩放比例(默认16:9).

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:flutter_video_example/video_detail_page.dart';
import 'package:ncz_flutter_video/flutter_video.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      platformVersion = await FlutterVideo.platformVersion;
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Video Plugin example app',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: VideoDetailPage(),
    );
  }
}
0
likes
115
pub points
0%
popularity

Publisher

unverified uploader

通用播放器组件,支持暂停、快进、重复、全屏横屏播放、声音大小控制与屏蔽、视频封面、自动播放、循环播放、缩放比例(默认16:9).

Homepage

Documentation

API reference

License

MIT (LICENSE)

Dependencies

chewie, cupertino_icons, flutter, video_player

More

Packages that depend on ncz_flutter_video