Is there a way to launch the mobile devices calendar from an icon press in flutter? We incorporated url_launcher plugin and are able to launch the devices phone and text apps.
Asked
Active
Viewed 1,321 times
1 Answers
4
If you have url_launcher integrated then calshow://
for iOS and content://com.android.calendar/time/
for Android should work.

Tomáš Linhart
- 13,509
- 5
- 51
- 54
-
thanks! so would you suggest an if statement so both will work? – Sam Cromer Mar 04 '19 at 20:49
-
@SamCromer Yes, check this to see how to do it https://stackoverflow.com/questions/45924474/how-do-you-detect-the-host-platform-from-dart-code – Tomáš Linhart Mar 04 '19 at 21:53
-
how i pass parameters? – Bruno Zorima Mar 11 '23 at 23:29