robinmanuelthiel / flexbutton

Flexible button control for Xamarin.Forms
MIT License
240 stars 34 forks source link

[UWP] In Release Mode the button is not clickable #64

Closed Agredo closed 5 years ago

Agredo commented 6 years ago

In Release Mode the button is not clickable in FlexButton v. 0.8.

robinmanuelthiel commented 5 years ago

Cannot reproduce with the provided information. Tested the Demo project from this repository. Please use the ISSUE TEMPLATE, when filing bugs. Can you please provide more information?

Jamesmallon1 commented 5 years ago

@robinmanuelthiel issue is reproducible when Native .NET Toolchain is enabled in release mode. Probably worth mentioning in your documentation on UWP there is an extra step where by if you are going to enable this option, you must do the following on initialising Xamarin.Forms:

 var rendererAssemblies = new[]
            {
                typeof(Flex.UWP.CustomRenderers.GestureFrameRenderer).GetTypeInfo().Assembly,
            };

            Xamarin.Forms.Forms.Init(args, rendererAssemblies);

Thanks for a great plugin.

sheharyarshahid commented 4 years ago

I experienced the button control was not working on release mode in my app so I was kinda worried and because of that, I couldn't release my app on Windows Store. Now I got the solution for what I was looking for. The control is really amazing. Kudos :)