SvgXF icon indicating copy to clipboard operation
SvgXF copied to clipboard

Changing Bindable property at runtime

Open gamidon opened this issue 7 years ago • 1 comments

gamidon avatar Mar 02 '18 19:03 gamidon

Simply set them. I have a label that, when tapped, modifies the SVG size:

LeLabel.GestureRecognizers.Add(new TapGestureRecognizer() { Command = new Command(() => { LeSVG.WidthRequest = 20; }) });

lucidBrot avatar Mar 25 '19 13:03 lucidBrot