adospace / reactorui-maui

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

Issue with Scaffold Generator #201

Closed powerdude closed 5 months ago

powerdude commented 5 months ago

Hi, I'm using the ScaffoldGenerator for some SyncFusion objects and getting error:

error CS1061: 'RxAnimation' does not contain a definition for 'CurrentValue' and no accessible extension method 'CurrentValue' accepting a first argument of type 'RxAnimation' could be found (are you missing a using directive or an assembly reference?)

in this method for all classes:

 public static T FontSize<T>(this T sfNumericEntry, double fontSize, RxDoubleAnimation? customAnimation = null)
            where T : ISfNumericEntry
        {
            sfNumericEntry.FontSize = fontSize;
            sfNumericEntry.AppendAnimatable(global::Syncfusion.Maui.Inputs.SfNumericEntry.FontSizeProperty, customAnimation ?? new RxDoubleAnimation(fontSize), v => sfNumericEntry.FontSize = v.CurrentValue());
            return sfNumericEntry;
        }
adospace commented 5 months ago

ops, sorry, it's a bug, The fix is coming asap

adospace commented 5 months ago

fixed in 2.0.20