我了解到我们可以从url_launcher启动Google地图,电子邮件和Skype。在手机的内置摄像头应用中打开的URL应该是什么?
在Android和iOS中都是?
const url = 'https://www.google.com/maps/search/?api=1&query=52.32,4.917';
const url1 = 'cam:'; //what should be this url?
if (await canLaunch(url1)) {
await launch(url1);
} else {
throw 'Could not launch $url';
}