Hi all,
Below is my custom renderer (in case it helps anyone) for a progress bar (IOS). Is there a way to increase its height? I can't find a way to do that, I've already changed the color.
[assembly: ExportRenderer(typeof(CustomProgressBar), typeof(CustomProgressBariOs))]
namespace FXWell.iOS
{
public class CustomProgressBariOs: ProgressBarRenderer
{
protected override void OnElementChanged(ElementChangedEventArgs<Xamarin.Forms.ProgressBar> e)
{
base.OnElementChanged(e);
Control.ProgressTintColor = UIColor.Red;
}
}
}