标签: flutter gmail-api
我需要知道Flutter是否支持Gmail API吗?
我在Gmail API页面上搜索,好像他们现在不支持Flutter。
我问这个问题是因为我需要构建一个类似Gmail的应用程序(我的意思是所有功能)
答案 0 :(得分:0)
如果您想使用click事件发送邮件,则可以尝试
_launchURL() async { const url = 'mailto:test_user@example.org?subject=test&body=hello'; if (await canLaunch(url)) { await launch(url); } else { throw 'Could not launch $url'; } }
检查完整的代码here
或者您可以检查GMail API here