public ExercisePreviewViewModel()
{
- Skip = new Command(() => _ = NavigationService.Instance.NavigateToExercisingView());
+ Skip = new Command(NavigationService.Instance.NavigateToExercisingView);
Back = new Command(NavigationService.Instance.Pop);
PreviousWorkout = new Command(GoPrevious);
NextWorkout = new Command(GoNext);
PropertyMap fontStyle = new PropertyMap();
fontStyle.Add("weight", new PropertyValue("medium"));
CountingLabel.FontStyle = fontStyle;
-
}
private void CountingLabel_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)