Open Lelelo1 opened 4 years ago
Hello!
First of all having to add this
[AttributeUsage(AttributeTargets.Property)] public class BindableAttribute : Attribute { }
was not obvious to me, maybe add it to the readme?
I am getting the following exceptions:
iOS
Attempting to JIT compile method 'void Namespace.ScrollCollectionView:.cctor ()' while running in aot-only mode. See https://docs.microsoft.com/xamarin/ios/internals/limitations for more information.
Android
Invalid IL code in Namespace.ScrollCollectionView
It works brilliantly when having the custom control placed inside the Forms project. But not when having control placed inside a net standard library.
The error is thrown when the controls has a property given [Bindable] attribute and are instantiated.
[Bindable]
Thank you very much for your report!! I will investigate the bug
Hello!
First of all having to add this
was not obvious to me, maybe add it to the readme?
I am getting the following exceptions:
iOS
Android
It works brilliantly when having the custom control placed inside the Forms project. But not when having control placed inside a net standard library.
The error is thrown when the controls has a property given
[Bindable]
attribute and are instantiated.