adospace / reactorui-maui

MauiReactor is a MVU UI framework built on top of .NET MAUI
MIT License
568 stars 47 forks source link

Update MauiReactor #131

Closed iamnevir closed 1 year ago

iamnevir commented 1 year ago

I updated mauireactor using cli but then when i create project in my visual studio it is still version 1.0.131. And after I did update using nuget there was problem with ScaffoldGenerator when I used SkiaSharp's SKLottieView image

iamnevir commented 1 year ago

image

adospace commented 1 year ago

do you also scaffold SkAnimatedSurfaceView?

[Scaffold(typeof(SkiaSharp.Extended.UI.Controls.SKSurfaceView))]
partial class SKSurfaceView { }

[Scaffold(typeof(SkiaSharp.Extended.UI.Controls.SKAnimatedSurfaceView))]
partial class SKAnimatedSurfaceView { }

[Scaffold(typeof(SkiaSharp.Extended.UI.Controls.SKLottieView))]
partial class SKLottieView { }

you need ti scaffold up to the View

iamnevir commented 1 year ago

thank you it worked well!

iamnevir commented 1 year ago

@adospace i have a problem with update my old project to MauiReactor 1.0.137 when i build project again image

adospace commented 1 year ago

I don't think it is something related to MauiReactor. Rebuilding could probably help ?

iamnevir commented 1 year ago

@adospace why when i update MauiReactor my Visual Studio doesn't update the template. it still 1.0.131

adospace commented 1 year ago

the template is another thing, to update the template you have to run the following command: dotnet new install Reactor.Maui.TemplatePack

that installs or updates the template to the latest version