aspnetde / MvvmNano

The small and smart MVVM framework made with ❤ for Xamarin.Forms.
MIT License
59 stars 10 forks source link

Is this plugin still in development? #19

Closed Sebastian1989101 closed 7 years ago

Sebastian1989101 commented 7 years ago

@aspnetde Some user requests here are pretty old and the MvvmNano library seems not finished because there are so many problems with it.

  1. Global Styles from the App.xaml are not working on iOS.
  2. The Navigation is totally broken if you want to use modal dialogs (also there are no examples for that)
  3. It is impossible to display alerts for the user.
aspnetde commented 7 years ago

I am no longer actively maintaining this framework, but I am in talks about transferring the ownership. So there might be a future.

  1. Wrong. Use the presenter for it. There you can do whatever you want.

  2. Wrong. The framework doesn't care about alerts, this is completely up to you. And doing so is easy. Create an interface IAlert with a method Show(), inject this in your view model and implement it a) for all platforms with XF, or b) on each platform individually.

Claiming it is totally broken is just nonsense.

krdmllr commented 7 years ago

@Sebastian1989101 to your first problem., do you have the same error described in this issue: https://github.com/aspnetde/MvvmNano/issues/18 ?

krdmllr commented 7 years ago

I will close this issue since i was not able to the stated problem and @Sebastian1989101 did not provide any examples. Please open an issue if you have any problems with MvvmNano.

Concerning your question wether MvvmNano is still in development, yes it is. I maintain the code and add missing features if needed.