You can fire a local notification at specific times to alert people do certain exercises. Every time you need to add an exercise, just add a local notification with specific time, and you can set the sound
, content
, isRepeat
and etc.
For how to set a notification:
If you are using Xamarin.forms: you have to use dependency-service to implement the local-notifications in iOS
and android
project.
For example, in your xamarin.forms
project:
public interface ISetLocalNotification
{
void noti(string time, string content...);
}
And implement in both iOS and Android project.
iOS: local-notifications-in-ios
Android: local-notifications-in-android
And when you want to use :
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
DependencyService.Get<ISetLocalNotification>().noti("12:00","123"...);
}
}