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
c2c0ba09
Commit
c2c0ba09
authored
Feb 20, 2019
by
ouxiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
assets channel
parent
492fe1a9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
18 deletions
+16
-18
assetsChannel.dart
lib/assetsChannel.dart
+16
-18
No files found.
lib/assetsChannel.dart
View file @
c2c0ba09
import
'dart:async'
;
import
'dart:typed_data'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/services.dart'
;
...
...
@@ -14,20 +14,21 @@ class _AssestPlatformChannelState extends State<AssestPlatformChannel> {
static
const
EventChannel
eventChannel
=
EventChannel
(
'GMAssetsEventChannelName'
);
String
_batteryLevel
=
'Battery level: unknown.'
;
Object
_imageData
;
Uint8List
_imageData
;
String
_tttt
=
'ssss'
;
Future
<
void
>
_editPortrait
()
async
{
String
batteryLevel
;
Uint8List
imageData
;
try
{
final
int
result
=
await
methodChannel
.
invokeMethod
(
'editPortrait'
);
batteryLevel
=
'Battery level:
$result
%.'
;
final
result
=
await
methodChannel
.
invokeMethod
(
'editPortrait'
);
imageData
=
result
;
}
on
PlatformException
{
batteryLevel
=
'Failed to get battery level.'
;
imageData
=
null
;
}
setState
(()
{
_batteryLevel
=
batteryLevel
;
_imageData
=
imageData
;
_tttt
=
'aaaaa'
;
});
}
...
...
@@ -38,16 +39,11 @@ class _AssestPlatformChannelState extends State<AssestPlatformChannel> {
}
void
_onEvent
(
Object
event
)
{
_imageData
=
event
;
print
(
event
.
runtimeType
);
Image
.
memory
(
event
);
setState
(()
{
});
setState
(()
{});
}
void
_onError
(
Object
error
)
{
setState
(()
{
});
setState
(()
{});
}
@override
...
...
@@ -64,7 +60,7 @@ class _AssestPlatformChannelState extends State<AssestPlatformChannel> {
Column
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
children:
<
Widget
>[
Text
(
_
batteryLevel
,
key:
const
Key
(
'editPortrait'
)),
Text
(
_
tttt
,
key:
const
Key
(
'editPortrait'
)),
Padding
(
padding:
const
EdgeInsets
.
all
(
16.0
),
child:
RaisedButton
(
...
...
@@ -90,12 +86,14 @@ class _AssestPlatformChannelState extends State<AssestPlatformChannel> {
Widget
_imageWidget
(){
if
(
_imageData
!=
null
)
{
return
Image
.
memory
(
_imageData
,
color:
Colors
.
purple
,
//
color: Colors.purple,
width:
200
,
height:
200
,
);
}
else
{
return
Text
(
'i am not image'
);
return
Center
(
child:
Text
(
'I am not image'
+
_tttt
),
);
}
}
...
...
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