Removed migrations. New onboarding screen and wizard like steps.
This commit is contained in:
@@ -11,12 +11,15 @@ public partial class BreadcrumbNavigationItemViewModel : ObservableObject
|
||||
[ObservableProperty]
|
||||
private bool isActive;
|
||||
|
||||
public int StepNumber { get; set; }
|
||||
|
||||
public BreadcrumbNavigationRequested Request { get; set; }
|
||||
|
||||
public BreadcrumbNavigationItemViewModel(BreadcrumbNavigationRequested request, bool isActive)
|
||||
public BreadcrumbNavigationItemViewModel(BreadcrumbNavigationRequested request, bool isActive, int stepNumber = 0)
|
||||
{
|
||||
Request = request;
|
||||
Title = request.PageTitle;
|
||||
IsActive = isActive;
|
||||
StepNumber = stepNumber;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
using Wino.Core.Domain.Interfaces;
|
||||
|
||||
namespace Wino.Core.ViewModels;
|
||||
|
||||
public class WelcomeHostPageViewModel : CoreBaseViewModel
|
||||
{
|
||||
public WelcomeHostPageViewModel(INavigationService navigationService)
|
||||
{
|
||||
NavigationService = navigationService;
|
||||
}
|
||||
|
||||
public INavigationService NavigationService { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user