Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gmalpha_flutter
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mobile
gmalpha_flutter
Commits
a664f8e1
Commit
a664f8e1
authored
Jan 23, 2019
by
ouxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
channel test
parent
c6325936
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
0 deletions
+88
-0
battery.dart
lib/battery.dart
+76
-0
main.dart
lib/main.dart
+12
-0
No files found.
lib/battery.dart
0 → 100644
View file @
a664f8e1
import
'dart:async'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
class
PlatformChannel
extends
StatefulWidget
{
@override
_PlatformChannelState
createState
()
=>
_PlatformChannelState
();
}
class
_PlatformChannelState
extends
State
<
PlatformChannel
>
{
static
const
MethodChannel
methodChannel
=
MethodChannel
(
'samples.flutter.io/battery'
);
static
const
EventChannel
eventChannel
=
EventChannel
(
'samples.flutter.io/charging'
);
String
_batteryLevel
=
'Battery level: unknown.'
;
String
_chargingStatus
=
'Battery status: unknown.'
;
Future
<
void
>
_getBatteryLevel
()
async
{
String
batteryLevel
;
try
{
final
int
result
=
await
methodChannel
.
invokeMethod
(
'getBatteryLevel'
);
batteryLevel
=
'Battery level:
$result
%.'
;
}
on
PlatformException
{
batteryLevel
=
'Failed to get battery level.'
;
}
setState
(()
{
_batteryLevel
=
batteryLevel
;
});
}
@override
void
initState
()
{
super
.
initState
();
eventChannel
.
receiveBroadcastStream
().
listen
(
_onEvent
,
onError:
_onError
);
}
void
_onEvent
(
Object
event
)
{
setState
(()
{
_chargingStatus
=
"Battery status:
${event == 'charging' ? '' : 'dis'}
charging."
;
});
}
void
_onError
(
Object
error
)
{
setState
(()
{
_chargingStatus
=
'Battery status: unknown.'
;
});
}
@override
Widget
build
(
BuildContext
context
)
{
return
Material
(
child:
Column
(
mainAxisAlignment:
MainAxisAlignment
.
spaceEvenly
,
children:
<
Widget
>[
Column
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
children:
<
Widget
>[
Text
(
_batteryLevel
,
key:
const
Key
(
'Battery level label'
)),
Padding
(
padding:
const
EdgeInsets
.
all
(
16.0
),
child:
RaisedButton
(
child:
const
Text
(
'Refresh'
),
onPressed:
_getBatteryLevel
,
),
),
],
),
Text
(
_chargingStatus
),
],
),
);
}
}
lib/main.dart
View file @
a664f8e1
import
'package:flutter/material.dart'
;
import
'battery.dart'
;
void
main
(
)
=>
runApp
(
MyApp
());
...
...
@@ -20,8 +21,15 @@ class MyApp extends StatelessWidget {
primarySwatch:
Colors
.
blue
,
),
home:
MyHomePage
(
title:
'Flutter Demo Home Page'
),
routes:
{
"/channeltest"
:
batteryChannelPage
,
},
);
}
Widget
batteryChannelPage
(
BuildContext
context
)
{
return
PlatformChannel
();
}
}
class
MyHomePage
extends
StatefulWidget
{
...
...
@@ -97,6 +105,10 @@ class _MyHomePageState extends State<MyHomePage> {
'
$_counter
'
,
style:
Theme
.
of
(
context
).
textTheme
.
display1
,
),
FlatButton
(
child:
Text
(
'channel test'
),
onPressed:
(){
Navigator
.
pushNamed
(
context
,
"/channeltest"
);},
)
],
),
),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment