Preface: I am relatively new to mobile app development.
My team and I are developing a Mobile app where one of the pieces of intended functionality is a shared calendar between multiple users. We are writing the application using Flutter, which implements the dart language.
The dart version of the Google API is in beta, as is Flutter, which means that documentation is relatively scarce, compared to more established methods of mobile development.
My question is as follows: How do I display the User's Google Calendar on the App page:
This breaks down into two parts,
1)How to I retrieve the information from Google?
I know this will require the Google Calendar API, which I have added the dependency for. I am unsure what command will return the needed information.
https://pub.dartlang.org/packages/googleapis
https://developers.google.com/calendar/v3/reference/
Unfortunately Google has not released any examples on how to implement this in dart
2)How do I physically display the information on the Calendar page?