SvgXF
SvgXF copied to clipboard
Changing Bindable property at runtime
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; }) });