TrashMob-eco / TrashMob

Source Code for TrashMob.eco
Apache License 2.0
7 stars 1 forks source link

[M] Create event wizard Scaffolding, Base logic and basic UI #1574

Closed vtserej closed 1 month ago

vtserej commented 1 month ago

This is the first PR for CreateEventWizard. The logic to validate the steps is located in private void ValidateCurrentStep(object sender, PropertyChangedEventArgs e)

To enable is just uncomment this code in MainViewModel.cs

    private async Task CreateEvent()
    {
        await Shell.Current.GoToAsync(nameof(CreateEventPage));
        //await Shell.Current.GoToAsync(nameof(CreateEventPageNew));
    }

Any suggestions are welcome