Nikolay M
Nikolay M
I found several breaking changes in my project after update to Paket 6. Paket 5: ``` True ..\..\packages\android\Xamarin.AndroidX.Annotation\lib\monoandroid90\Xamarin.AndroidX.Annotation.dll True True ``` Paket 6: ``` True ..\..\packages\android\Xamarin.AndroidX.Annotation\lib\monoandroid90\Xamarin.AndroidX.Annotation.dll True True ... ..\..\packages\android\System.Numerics.Vectors\lib\netstandard2.0\System.Numerics.Vectors.dll...
I got this error on AXrLottie 1.1.0 but I have not found a fix for this error in any release after 1.1.0. ``` D/StrictMode: StrictMode policy violation: android.os.strictmode.LeakedClosableViolation: A resource...
I got stack overflow exception with this code: ```fsharp let tcs = TaskCompletionSource() let rec loop i = job { if i < 1_000_000 then return! loop (i + 1)...
I got the following error while trying to build an F# application: ``` The imported project "/Users/nikolay/.nuget/packages/msbuild.sdk.extras/3.0.44/Build/targets/Microsoft.NET.Sdk.FSharpTargetsShim.targets" was not found. Confirm that the expression in the Import declaration "/Users/nikolay/.nuget/packages/msbuild.sdk.extras/3.0.44/Build/LanguageTargets/../targets/Microsoft.NET.Sdk.FSharpTargetsShim.targets" is...
## Use case Fabulous uses Xamarin.Forms as frontend to draw UI. XF have many problems: lot of bugs, performance issues, platform-specific bugs, poor support from developers. Moreover, we need to...
We have out implementation of CollectionView that frequently uses `UpdateIncremental` function. I find out that sometimes `geastureRecognizers` are not updated. There is examle: ```fsharp let i = ref 0 let...
## Use case This proposal is intended to improve performance and optimize memory usage. This can be useful when we have multiple instances of same component. As you can see...
It would be great to support animated transitions on changed properties. The main idea is as follows: when property is changed in `UpdateIncremental` we should check if any transitions is...
I am interested in [fix](https://github.com/xamarin/Xamarin.Android.FSharp.ResourceProvider/issues/11) `Xamarin.Android.FSharp.ResourceProvider` for .Net 6. Xamarin.Android uses code generation to access any resources (e.g. images, styles and other). It generates `Resource.designer.cs` file. `Xamarin.Android.FSharp.ResourceProvider` compiles `Resources.designer.cs` file...
**Describe the bug** ItemsRepeater have poor performance when it contains nested items repeaters. https://user-images.githubusercontent.com/5128766/198218585-117b17b7-a28c-43b4-8a86-bb36b57ec1a3.mp4 There are also performance issues on large **plain** lists with emoji. https://user-images.githubusercontent.com/5128766/198219612-da0b46f1-b9a9-4839-b11e-dec04252881e.mp4 These videos are recorded...