英文:
Is it possible to create, update, delete the events on Google Calendar application with Flutter?
问题
可以同步将这些功能与Google日历一起实现,而且它会立即在Google日历上反映出来吗?
在所选日历中创建新的日历事件
通过UID在所选日历中更新现有的日历事件
通过UID在所选日历上删除日历事件
上述功能应在Android和iOS上运行
实际上,我尝试过 syncfusion_flutter_calendar,但我认为它只能作为一个视图来使用。
英文:
Is it possible to implement this functionalities synchronously with Google Calendar, and it will be reflected on Google Calendar immediately?
Create a new calendar event in the chosen calendar
Update an existing calendar event, by UID, in the chosen calendar
Delete a calendar event, by UID, on the chosen calendar
The above functionality should work on Android and iOS
Actually, I tried syncfusion_flutter_calendar, but I think it is working as a view only.
答案1
得分: 2
你可以使用他们的API:
https://developers.google.com/calendar/api/guides/overview
此外,它并不免费。
英文:
You can use their API:
https://developers.google.com/calendar/api/guides/overview
Also, it is not free.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论