uno.extensions
uno.extensions copied to clipboard
Libraries to ease common developer tasks associated with building multi-platform mobile, desktop and web applications using Uno Platform or WinAppSDK.
## Current behavior property changed not propagated to calculated properties ## Expected behavior property changed propagate to calculated properties Affected platform(s): All Visual Studio: All ## Anything else we need...
## Current behavior Generic base properties seems to not be mapped ## Expected behavior Mapped as all other properties
## What would you like to be added: Add something like: ```csharp public record Language(int Id) : Ikeyed; public record Profile(IImmutableList SpokenLanguages); private IListFeed _languages; public IState Profile { get;}...
## What would you like to be added: Something like: ```csharp public interface IService { public bool IsSomething { get; set; } } public IState IsSomething => State.FromProperty( _svc, get:...
## Current behavior `ListFeed.Selection` might throw at runtime due to a `OverloadResolutionFailure`: All `.Selection` methods are considered as valid by roslyn ... but the build succeed anyway. ## Expected behavior...
## What would you like to be added: When we get access to the dispatcher, we should run as much work we can in before the next frame ## Why...
## What would you like to be added: Ability to group items of a `ListFeed` ## Questions: 1. How do we support pagination? * If paginated source list is ordered...
``` public partial record MyClass { public MyClass Child { get; init; } } ``` The generated code builds correctly, but I get a stackoverflow when the code uses the...
We frequently get questions about the usage of MVUX with examples like ```csharp Count = State.Value(this, () => 0); Content = Feed.Async(async _ => await Count switch { 0 =>...
## What would you like to be added: Deprecate `State.Empty` ## Why is this needed: This is miss-leading of its behavior when used in VM for 2-way bindings on de-normalized...