openURLs method
Opens files saved at resourceURLs
in iOS QuickLook
(user can swipe between them)
Sets the current item in view to initialIndex
(iOS 13+) isDismissable
configures whether QuickLook is dismissable
by a swipe from top to bottom
The files should be saved at the ApplicationDocumentsDirectory (check out the example at https://pub.dev/packages/quick_look/example)
Implementation
Future<bool> openURLs({required List<String> resourceURLs, int initialIndex = 0, bool isDismissable = true, }) async {
final String pigeonVar_channelName = 'dev.flutter.pigeon.quick_look.QuickLookApi.openURLs$pigeonVar_messageChannelSuffix';
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
pigeonVar_channelName,
pigeonChannelCodec,
binaryMessenger: pigeonVar_binaryMessenger,
);
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(<Object?>[resourceURLs, initialIndex, isDismissable]);
final List<Object?>? pigeonVar_replyList =
await pigeonVar_sendFuture as List<Object?>?;
if (pigeonVar_replyList == null) {
throw _createConnectionError(pigeonVar_channelName);
} else if (pigeonVar_replyList.length > 1) {
throw PlatformException(
code: pigeonVar_replyList[0]! as String,
message: pigeonVar_replyList[1] as String?,
details: pigeonVar_replyList[2],
);
} else if (pigeonVar_replyList[0] == null) {
throw PlatformException(
code: 'null-error',
message: 'Host platform returned null value for non-null return value.',
);
} else {
return (pigeonVar_replyList[0] as bool?)!;
}
}