Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
flutter_plugin
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
林生雨
flutter_plugin
Commits
72bc7ae5
Commit
72bc7ae5
authored
Nov 01, 2019
by
林生雨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
commit
parent
7c88c03d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
35 additions
and
15 deletions
+35
-15
workspace.xml
.idea/workspace.xml
+0
-0
AlbumModel.dart
example/lib/AlbumModel/page/album/AlbumModel.dart
+1
-1
AlbumPage.dart
example/lib/AlbumModel/page/album/AlbumPage.dart
+2
-2
main.dart
example/lib/main.dart
+27
-8
GengmeiFlutterPlugin.m
ios/Classes/GengmeiFlutterPlugin.m
+3
-2
MyPlayerViewController.m
ios/Classes/MyPlayerViewController.m
+2
-2
No files found.
.idea/workspace.xml
View file @
72bc7ae5
This diff is collapsed.
Click to expand it.
example/lib/AlbumModel/page/album/AlbumModel.dart
View file @
72bc7ae5
...
...
@@ -240,7 +240,7 @@ class AlbumModel {
// print("IM $image VIDEI ${video}");
// });
// });
Navigator
.
pop
(
context
,
List
<
String
>.
from
(
value
)[
0
]
);
Navigator
.
pop
(
context
,
List
<
Map
>.
from
(
value
)
);
});
}
}
...
...
example/lib/AlbumModel/page/album/AlbumPage.dart
View file @
72bc7ae5
...
...
@@ -183,8 +183,8 @@ class AlbumState extends State<AlbumPage> {
}
return
GestureDetector
(
onTap:
(){
_model
.
previewItem
(
context
,
newIndex
,
"pageName"
);
//
_model.clickItem(context, newIndex);
//
_model.previewItem(context, newIndex, "pageName");
_model
.
clickItem
(
context
,
newIndex
);
},
child:
Container
(
decoration:
BoxDecoration
(
...
...
example/lib/main.dart
View file @
72bc7ae5
...
...
@@ -132,6 +132,7 @@ class HOME extends StatefulWidget {
class
HOMESTATE
extends
State
<
HOME
>
{
String
imagePath
;
List
<
String
>
realPath
=
[];
@override
Widget
build
(
BuildContext
context
)
{
...
...
@@ -142,21 +143,39 @@ class HOMESTATE extends State<HOME> {
Navigator
.
push
(
context
,
MaterialPageRoute
(
builder:
(
context
)
=>
AlbumPage
(
false
,
1
0
,
null
)))
builder:
(
context
)
=>
AlbumPage
(
false
,
5
0
,
null
)))
.
then
((
value
)
{
List
<
String
>
ll
=
[];
var
value2
=
(
value
as
List
);
value2
.
forEach
((
item
)
{
var
map
=
Map
<
String
,
String
>.
from
(
item
);
ll
.
add
(
map
[
"realImagePath"
]);
});
setState
(()
{
imagePath
=
value
;
realPath
=
ll
;
// imagePath = value;
});
}).
catchError
((
error
)
{
print
(
error
);
});
},
child:
Container
(
width:
200
,
height:
200
,
color:
Colors
.
yellow
,
child:
imagePath
==
null
?
Text
(
"www"
)
:
Image
.
file
(
File
(
imagePath
)),
)));
width:
double
.
maxFinite
,
height:
double
.
maxFinite
,
color:
Colors
.
yellow
,
child:
ListView
.
builder
(
itemCount:
realPath
.
length
,
itemBuilder:
(
con
,
index
)
{
return
Container
(
width:
double
.
maxFinite
,
height:
500
,
child:
Image
.
file
(
File
(
realPath
[
index
]),
fit:
BoxFit
.
fitHeight
,
),
);
})
// imagePath == null ? Text("www") : Image.file(File(imagePath)),
)));
}
}
ios/Classes/GengmeiFlutterPlugin.m
View file @
72bc7ae5
...
...
@@ -299,6 +299,7 @@ NSString *cacheDirectory;
//
// CGSize temp=CGSizeMake(picWidth*tempScareSize, picHeight*tempScareSize);
dispatch_async
(
concurrentQueue
,
^
{
NSString
*
tempTake1
=
[
tempPath
stringByAppendingPathComponent
:[
path
[
i
]
lastPathComponent
]];
[[
PHImageManager
defaultManager
]
requestImageDataForAsset
:
assets
options
:
imageRequestOption
resultHandler
:^
(
NSData
*
_Nullable
imageData
,
NSString
*
_Nullable
dataUTI
,
UIImageOrientation
orientation
,
NSDictionary
*
_Nullable
info
)
{
// [[PHImageManager defaultManager] requestImageForAsset:assets targetSize:temp contentMode:PHImageContentModeDefault options:imageRequestOption resultHandler:^(UIImage * _Nullable res, NSDictionary * _Nullable info) {
...
...
@@ -306,13 +307,13 @@ NSString *cacheDirectory;
@autoreleasepool
{
UIImage
*
res
=
[
UIImage
imageWithData
:
imageData
];
NSData
*
data
=
UIImageJPEGRepresentation
(
res
,
0
.
8
)
;
[
data
writeToFile
:
tempTake
atomically
:
YES
];
[
data
writeToFile
:
tempTake
1
atomically
:
YES
];
res
=
nil
;
data
=
nil
;
}
NSMutableDictionary
*
dict
=
[[
NSMutableDictionary
alloc
]
init
];
[
dict
setObject
:
path
[
i
]
forKey
:
@"path"
];
[
dict
setObject
:
tempTake
forKey
:
@"realImagePath"
];
[
dict
setObject
:
tempTake
1
forKey
:
@"realImagePath"
];
@synchronized
(
self
)
{
self
.
channelSize
++
;
[
self
.
channelList
addObject
:
dict
];
...
...
ios/Classes/MyPlayerViewController.m
View file @
72bc7ae5
...
...
@@ -64,9 +64,9 @@
// playerVC.view.frame = CGRectMake(200, 300, 300, 300);
[
self
.
view
addSubview
:
playerVC
.
view
];
[
self
addChildViewController
:
playerVC
];
//
if (playerVC.readyForDisplay) {
if
(
playerVC
.
readyForDisplay
)
{
[
playerVC
.
player
play
];
//
}
}
});
}];
});
...
...
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