Does anyone know the URI scheme for google chat for iOS or android? I'm trying to open a gchat conversation from my flutter app like below, but I can't find the damn URI scheme anywhere!
_launchGChat(email) async {
var url = 'gchat://$email';
if (await canLaunch(url)) {
await launch(url);
} else {
throw 'Could not launch $url';
}
}
I tried using flutter_appavailability on my android emulator and found that the package name is com.google.android.apps.dynamite. Although this doesn't help me much it seems.
question from:
https://stackoverflow.com/questions/65931762/google-chat-uri-scheme 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…