Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 2.1 KB

File metadata and controls

36 lines (27 loc) · 2.1 KB

ReactiveUI

ReactiveUI is an advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. Avalonia ships its own fork of ReactiveUI in the Avalonia.ReactiveUI NuGet package. To use ReactiveUI and the the MVVM Pattern in your Avalonia solutions, add the package to your project via NuGet package manager GUI or execute the following command:

dotnet add package Avalonia.ReactiveUI

Avalonia.ReactiveUI includes Avalonia-specific helpers to handle view model-based routing, view activation and scheduling. Be sure to add .UseReactiveUI() to your AppBuilder before you use any of ReactiveUI's APIs in your application.

public static class Program
{
    public static void Main(string[] args) => BuildAvaloniaApp().Start<MainWindow>();

    public static AppBuilder BuildAvaloniaApp()
    {
        return AppBuilder
            .Configure<App>()
            // Add the line below to enable
            // ReactiveUI support in your app.
            .UseReactiveUI()
            .UsePlatformDetect()
            .LogToDebug();
    }
}

To get started with ReactiveUI, see the Getting Started guide and the tutorial. See also the ReactiveUI Handbook which describes advanced ReactiveUI features allowing you to build complex and scalable applications with ReactiveUI. See the pages below to learn how to handle view activation and how to use routing in your Avalonia applications.

In This Section