Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TinyStuff/TinyMvvm
TinyMvvm is a MVVM library that is built for Xamarin.Forms but is not limited to Xamarin.Forms, it created in a way that it will be easy to extend to other platforms.
https://github.com/TinyStuff/TinyMvvm
xamarin
Last synced: 30 days ago
JSON representation
TinyMvvm is a MVVM library that is built for Xamarin.Forms but is not limited to Xamarin.Forms, it created in a way that it will be easy to extend to other platforms.
- Host: GitHub
- URL: https://github.com/TinyStuff/TinyMvvm
- Owner: TinyStuff
- License: mit
- Created: 2017-08-29T11:57:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T18:17:01.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T23:16:12.456Z (4 months ago)
- Topics: xamarin
- Language: C#
- Homepage:
- Size: 3.47 MB
- Stars: 94
- Watchers: 8
- Forks: 14
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-xamarin-forms - TinyMvvm ★75
README
TinyMvvm for .NET MAUI have moved here, https://github.com/dhindrik/TinyMvvm.
This repo is home for the Xamarin.Forms code.
## Build status
## 4.0 preview - .NET MAUI
Watch this video for more info about TinyMvvm and .NET MAUI. Docs will be published soon.https://youtu.be/XnBmvOu3MO4
## 3.0 Breaking changes
* **TinyNavigationHelper** is merged into TinyMvvm and the namespaced is changed to **TinyMvvm**.
* To use ViewModel navigation with shell you have to call **InitViewModelNavigation**.```csharp
navigationHelper.InitViewModelNavigation(viewModelAssembly);
```## What is TinyMvvm?
TinyMvvm is a MVVM library that is built for Xamarin.Forms but is not limited to Xamarin.Forms, it created in a way that it will be easy to extend to other platforms.TinyMvvm main features:
* NavigationHelper that supports both Shell and the classic NavigationService.
* Passing objects as parameters, both when using Shell and classic navigation.
* ViewModel navigation with Shell.
* Add BindingContext in View, but still be able to use DI in VIewModels.
* Lifecycle events in ViewModels.
* INotiftyPropertyChanged implementation.## Get started
To get started with TinyMvvm the recommendation is to following this, Get Started Tutorial.
You can also read the following document about the main concepts of TinyMvvm,
TinyMvvm ConceptsWatch Daniel Hindrikes talking about TinyMvvm on YouTube with this recording from Xam Expert Day 2020:
[![Watch on YouTube](https://img.youtube.com/vi/rS-cnU86870/0.jpg)](https://www.youtube.com/watch?v=rS-cnU86870)## Contribute
You are very welcome to contribute to TinyMvvm. If you want to add a new feature we would like if you create an issue first so we can discuss the the feature before you spend time to implement it.