Commit f9fd6134 authored by ouxiang's avatar ouxiang

add assets channel

parent 0d913eab
...@@ -3,12 +3,12 @@ import 'dart:async'; ...@@ -3,12 +3,12 @@ import 'dart:async';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
class PlatformChannel extends StatefulWidget { class AssestPlatformChannel extends StatefulWidget {
@override @override
_PlatformChannelState createState() => _PlatformChannelState(); _AssestPlatformChannelState createState() => _AssestPlatformChannelState();
} }
class _PlatformChannelState extends State<PlatformChannel> { class _AssestPlatformChannelState extends State<AssestPlatformChannel> {
static const MethodChannel methodChannel = static const MethodChannel methodChannel =
MethodChannel('GMAssetsMethodChannelName'); MethodChannel('GMAssetsMethodChannelName');
static const EventChannel eventChannel = static const EventChannel eventChannel =
......
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'battery.dart'; import 'battery.dart';
import 'assetsChannel.dart';
void main() => runApp(MyApp()); void main() => runApp(MyApp());
...@@ -14,6 +15,7 @@ class MyApp extends StatelessWidget { ...@@ -14,6 +15,7 @@ class MyApp extends StatelessWidget {
home: MyHomePage(title: 'Flutter Demo Home Page'), home: MyHomePage(title: 'Flutter Demo Home Page'),
routes: { routes: {
"/channeltest": batteryChannelPage, "/channeltest": batteryChannelPage,
"/assetschannel": assetsChannelPage,
}, },
); );
} }
...@@ -21,6 +23,10 @@ class MyApp extends StatelessWidget { ...@@ -21,6 +23,10 @@ class MyApp extends StatelessWidget {
Widget batteryChannelPage(BuildContext context) { Widget batteryChannelPage(BuildContext context) {
return PlatformChannel(); return PlatformChannel();
} }
Widget assetsChannelPage(BuildContext context) {
return AssestPlatformChannel();
}
} }
class MyHomePage extends StatefulWidget { class MyHomePage extends StatefulWidget {
...@@ -62,7 +68,12 @@ class _MyHomePageState extends State<MyHomePage> { ...@@ -62,7 +68,12 @@ class _MyHomePageState extends State<MyHomePage> {
child: Text('channel test'), child: Text('channel test'),
color: Colors.green, color: Colors.green,
onPressed: (){Navigator.pushNamed(context, "/channeltest");}, onPressed: (){Navigator.pushNamed(context, "/channeltest");},
) ),
FlatButton(
child: Text('channel test'),
color: Colors.green,
onPressed: (){Navigator.pushNamed(context, "/assetschannel");},
),
], ],
), ),
), ),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment