12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import 'dart:async';
-
- import 'package:flutter/material.dart';
- import 'package:flutter/services.dart';
- import 'package:mofun_flutter_plugin_video/mofun_flutter_plugin_video.dart';
- import 'package:mofun_flutter_plugin_video/mofun_video_view.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();
- }
-
-
- Future<void> initPlatformState() async {
- String platformVersion;
-
- try {
- platformVersion = await MofunFlutterPluginVideo.platformVersion;
- } on PlatformException {
- platformVersion = 'Failed to get platform version.';
- }
-
-
-
-
- if (!mounted) return;
-
- setState(() {
- _platformVersion = platformVersion;
- });
- }
-
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- home: Scaffold(
- appBar: AppBar(
- title: const Text('Plugin example app'),
- ),
- body: Column(
- children: <Widget>[
- Container(
- alignment: Alignment.center,
- height: 48,
- child: Text('Running on: $_platformVersion'),
- ),
- Container(
- height: 100.0,
- child: MofunVideoView(
- onMofunVideoViewCreated: _onMofunVideoViewCreated,
- ),
- ),
- ],
- ),
- ),
- );
- }
- }
-
- void _onMofunVideoViewCreated(MofunVideoViewController controller) {
- controller.setText('Hello from Android!');
- }
|