Commit 72bc7ae5 authored by 林生雨's avatar 林生雨

commit

parent 7c88c03d
This diff is collapsed.
......@@ -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));
});
}
}
......
......@@ -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(
......
......@@ -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, 10, null)))
builder: (context) => AlbumPage(false, 50, 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)),
)));
}
}
......@@ -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:tempTake1 atomically:YES];
res=nil;
data=nil;
}
NSMutableDictionary *dict=[[NSMutableDictionary alloc] init];
[dict setObject:path[i] forKey:@"path"];
[dict setObject:tempTake forKey:@"realImagePath"];
[dict setObject:tempTake1 forKey:@"realImagePath"];
@synchronized (self) {
self.channelSize++;
[self.channelList addObject:dict];
......
......@@ -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];
// }
}
});
}];
});
......
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