dotnet-presentations / dotnet-maui-workshop

A full day workshop (.NET MAUI Workshop in a Box) on how to build apps with .NET MAUI for iOS, Android, macOS, and Windows
https://docs.microsoft.com/dotnet/maui
MIT License
1.88k stars 588 forks source link

Update README.md #141

Closed naresh1998-code closed 4 months ago

naresh1998-code commented 4 months ago

[ObservableProperty] [NotifyPropertyChangedFor(nameof(IsNotBusy))] bool isBusy; <-- i is small case

[ObservableProperty] string title;

public bool IsNotBusy = !IsBusy; <-- i is capitalized Changed to !isBusy

jamesmontemagno commented 4 months ago

When you add [ObservableProperty] it generates the IsBusy

naresh1998-code commented 4 months ago

Thank You for the explanation. 👍