| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import 'package:flutter/material.dart';
- import 'package:ijkplayer_example/page/paging_page.dart';
- import 'package:ijkplayer_example/page/screen_shot_page.dart';
- import 'package:ijkplayer_example/page/video_list.dart';
- import '../i18n/i18n.dart';
- import 'error_url.dart';
- import 'asset_page.dart';
- import 'controller_stream_use.dart';
- import 'custom_ijk_opt_page.dart';
- import 'dialog_video_page.dart';
- import 'full_screen.dart';
- import 'gallery_page.dart';
- import 'ijk_status_page.dart';
- import 'in_overlay_page.dart';
- import 'network.dart';
- class IndexPage extends StatefulWidget {
- @override
- _IndexPageState createState() => _IndexPageState();
- }
- class _IndexPageState extends State<IndexPage> {
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: Text(currentI18n.indexTitle),
- ),
- body: ListView(
- children: <Widget>[
- buildButton(currentI18n.networkButton, NetworkPage()),
- buildButton(currentI18n.photoButton, PlayGalleryPage()),
- buildButton(currentI18n.assetButton, AssetPage()),
- buildButton(currentI18n.listViewButton, VideoList()),
- buildButton(currentI18n.fullScreenAutoButton, FullScreen()),
- buildButton(currentI18n.fullScreenManualButton, FullScreen2()),
- buildButton(currentI18n.withDialogButton, DialogVideoPage()),
- buildButton(currentI18n.pageViewButton, PagingPickPage()),
- buildButton(currentI18n.useStreamUsage, ControllerStreamUsagePage()),
- buildButton(currentI18n.screenshotTitle, ScreenShotPage()),
- buildButton(currentI18n.overlayPageTitle, InOverlayPage()),
- buildButton(currentI18n.ijkStatusTitle, IjkStatusPage()),
- buildButton(currentI18n.customOption, CustomIjkOptionPage()),
- buildButton(currentI18n.errorUrl, ErrorUrlPage()),
- buildButton(
- currentI18n.customFullScreenWidget, CustomFullControllerPage()),
- ],
- ),
- );
- }
- Widget buildButton(String text, Widget targetPage) {
- return FlatButton(
- onPressed: () {
- Navigator.push(context, MaterialPageRoute(builder: (_) => targetPage));
- },
- child: Text(text),
- );
- }
- }
|