How to change height of progress bar in Xamarin Forms?

前端 未结 5 412
深忆病人
深忆病人 2021-01-05 11:05

How do I change the height of a Xamarin Forms ProgressBar in code? Am using Xamarin Forms V2.1.

.HeightRequest and .MinimumHeightRequ

5条回答
  •  北荒
    北荒 (楼主)
    2021-01-05 11:52

    @BillF is correct basically

    In the iOS renderer code try using

    this.Control.Transform = transform; 
    

    instead of

    this.Transform = transform;
    

提交回复
热议问题