Cross-platform component like OpenDialog

Hey guys, do you have any components that support OpenDialog functionality on Windows? For example:

OpenDialogW.Filter := 'All files (.)|.';
if not OpenDialogW.Execute then
Exit;
FileName := OpenDialogW.FileName;

that runs on Android/iOS

Regards

For now, we don't immediately have a cross-platform open / select file dialog, because of security. On iOS & Android, you are limited to select files / folders within the application. We already have some minimal selection method via TTMSFNCUtils.SelectFile which you can try out, but a full blown dialog is not available.