Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reactiveui/maui.plugins.popup
ReactiveUI support for Maui Popups
https://github.com/reactiveui/maui.plugins.popup
Last synced: 3 months ago
JSON representation
ReactiveUI support for Maui Popups
- Host: GitHub
- URL: https://github.com/reactiveui/maui.plugins.popup
- Owner: reactiveui
- License: mit
- Created: 2024-05-28T22:51:39.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-09-22T07:39:40.000Z (3 months ago)
- Last Synced: 2024-10-07T09:17:07.147Z (3 months ago)
- Language: C#
- Size: 42 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# ReactiveUI.Maui.Plugins.Popup
ReactiveUI support for Maui Popups## Usage
Use ConfigureReactiveUIPopup() with MauiAppBuilder to initialise ReactiveUI.Maui.Plugins.Popup
```csharp
using Microsoft.Maui;
using Microsoft.Maui.Controls.Hosting;
using Microsoft.Maui.Hosting;
using ReactiveUI.Maui.Plugins.Popup;namespace MauiApp1
{
public class Startup : IStartup
{
public void Configure(IAppHostBuilder appBuilder)
{
appBuilder
.UseMauiApp()
.ConfigureReactiveUIPopup();
}
}
}
```The following methods are available
PopAllPopup
PopPopup
PushPopup
RemovePopupPageThe Following Observable Events are available
PoppingObservable
PoppedObservable
PushingObservable
PushedObservableThe following Controls are available
ReactivePopupPage
ReactivePopupPage## Sponsorship
The core team members, ReactiveUI contributors and contributors in the ecosystem do this open-source work in their free time. If you use ReactiveUI, a serious task, and you'd like us to invest more time on it, please donate. This project increases your income/productivity too. It makes development and applications faster and it reduces the required bandwidth.
[Become a sponsor](https://github.com/sponsors/reactivemarbles).
This is how we use the donations:
* Allow the core team to work on ReactiveUI
* Thank contributors if they invested a large amount of time in contributing
* Support projects in the ecosystem## .NET Foundation
ReactiveUI is part of the [.NET Foundation](https://www.dotnetfoundation.org/). Other projects that are associated with the foundation include the Microsoft .NET Compiler Platform ("Roslyn") as well as the Microsoft ASP.NET family of projects, Microsoft .NET Core & Xamarin Forms.