toBaseGalleryView function
导航到图片预览
Implementation
Future toBaseGalleryView({
required List<String> images,
int currentIndex = 0,
bool preventDuplicates = true,
}) async {
return to(
() => BaseGalleryViewPage(
images: images,
currentIndex: currentIndex,
),
preventDuplicates: preventDuplicates,
transition: Transition.fade,
);
}