photo_browser

Last updated:

0 purchases

photo_browser Image
photo_browser Images
Add to Cart

Description:

photo browser

photo_browser #


PhotoBrowser is a zoomable picture and custom view browsing plugin that supports thumbnails and provides picture data that you can use to download to your local album.
Demo #

Use it #
Depend on it #
dependencies:
photo_browser: 3.0.3
copied to clipboard
Import it #
import 'package:photo_browser/photo_browser.dart';
copied to clipboard
Creation and display of PhotoBrowser instance #
Widget _buildCell(BuildContext context, int cellIndex) {
return GestureDetector(
onTap: () {
PhotoBrowser photoBrowser = PhotoBrowser(
itemCount: _bigPhotos.length,
initIndex: cellIndex,
controller: _browserController,
allowTapToPop: true,
allowSwipeDownToPop: true,
// If allowPullDownToPop is true, the allowTapToPop setting is invalid.
// 如果allowPullDownToPop为true,则allowTapToPop设置无效
allowPullDownToPop: true,
heroTagBuilder: (int index) {
return _heroTags[index];
},
// Large images setting.
// 大图设置
imageUrlBuilder: (int index) {
return _bigPhotos[index];
},
// Thumbnails setting.
// 缩略图设置
thumbImageUrlBuilder: (int index) {
return _thumbPhotos[index];
},
positions: (BuildContext context) =>
<Positioned>[_buildCloseBtn(context)],
positionBuilders: <PositionBuilder>[
_buildSaveImageBtn,
_buildGuide,
],
loadFailedChild: _failedChild(),
);

// You can push directly.
// 可以直接push
// photoBrowser.push(context);
photoBrowser
.push(context, page: HCHud(child: photoBrowser))
.then((value) {
print('PhotoBrowser closed');
});
},
child: Stack(
children: [
Positioned.fill(
child: Container(color: Colors.grey.withOpacity(0.6))),
Positioned.fill(
child: Hero(
tag: _heroTags[cellIndex],
child: _buildImage(cellIndex),
placeholderBuilder:
(BuildContext context, Size heroSize, Widget child) =>
child),
),
],
),
);
}
copied to clipboard
Use of PhotoBrowserController #
onTap: () {
// Pop through controller
// 通过控制器pop退出,效果和单击退出效果一样
_browserController.pop();
},
copied to clipboard
onTap: () async {
// Obtain image data through the controller
// 通过控制器获取图片数据
ImageInfo? imageInfo;
if (_browserController.imageInfo[curIndex] != null) {
imageInfo = _browserController.imageInfo[curIndex];
} else if (_browserController.thumbImageInfo[curIndex] != null) {
imageInfo = _browserController.thumbImageInfo[curIndex];
}
if (imageInfo == null) {
return;
}

// Save image to album
// 将图片保存到相册
var byteData =
await imageInfo.image.toByteData(format: ImageByteFormat.png);
if (byteData != null) {
Uint8List uint8list = byteData.buffer.asUint8List();
var result = await ImageGallerySaver.saveImage(
Uint8List.fromList(uint8list));
}
}
copied to clipboard
onTap: () {
// Refresh the photoBrowser through the controller
// 通过控制器,刷新PhotoBrowser
_browserController.setState(() {});
},
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.