From e86082433c331c92e89ffa586db6c9c725aa81d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Romero?= Date: Thu, 16 May 2019 22:16:17 -0500 Subject: [PATCH 1/2] updating readme with xamarin forms example explanation --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 52f065e3..9c036ee1 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,18 @@ We are showing how Commands are being used side by side by MVVMLight, Caliburn.M We are showing how Messaging Pattern (AKA EventAggregation) is being used side by side by MVVMLight, Caliburn.Micro and of course ReactiveUI. ## Routing -Example of the Navigation System that ReactiveUI supplies. \ No newline at end of file +Example of the Navigation System that ReactiveUI supplies. + +## Xamarin Forms + +#### Cinephile + +Example in Xamarin Forms (Android and iOS) shows you the upcoming movies from [the movie api](https://api.themoviedb.org/3) + +Provides examples about: + +1. App's bootstrapping +2. Viewmodel first routing +3. ListView integration +4. [ReactiveCommands](https://reactiveui.net/docs/handbook/commands/) +5. [ObservableAsPropertyHelper](https://reactiveui.net/docs/handbook/observable-as-property-helper/) \ No newline at end of file From 028a273637f835efdc4611f9dac860a3d1a30ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20Romero?= Date: Thu, 16 May 2019 22:30:17 -0500 Subject: [PATCH 2/2] removing sections based on old examples --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index 9c036ee1..873d48fe 100644 --- a/README.md +++ b/README.md @@ -3,25 +3,6 @@ ReactiveUI.Samples This repository will contain all of ReactiveUI samples. - -## Basic -A sample application that demonstrate the use of ReactiveUI. -The application includes examples of: - * declare a ViewModel - * Commanding (+Async operation) - * Validation - * Caching heavy operation results - - -## Commands -We are showing how Commands are being used side by side by MVVMLight, Caliburn.Micro and of course ReactiveUI. - -## Messaging -We are showing how Messaging Pattern (AKA EventAggregation) is being used side by side by MVVMLight, Caliburn.Micro and of course ReactiveUI. - -## Routing -Example of the Navigation System that ReactiveUI supplies. - ## Xamarin Forms #### Cinephile