Does anyone know if BindableBase is still a viable or should we stick with INotifyChanged events? It seems like BindableBase has lost its luster quickly. Thanks for any in
It is not a choice between these two.
BindableBase implements INotifyPropertyChanged.
So if you use BindableBase you will be using INotifyPropertyChanged.
INotifyPropertyChanged is more or less mandatory when implementing MVVM using DataBinding.
Whether to use BindableBase or an other implementation depends on preference and use of Prism.