-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Labels
Description
🐛 Bug Report
ProgressHUDAppearance.RingRadius allows you to change the size of the spinner. This dimension is applied only if the "progress" parameter is used in the "Show" method. It would be useful to have this scaling even when calling "Show" without the progress
❓ Expected behavior
Changing the RingRadiu changes the size of the spinner independently of other parameters
🪜 Reproduction steps
public async partial Task ShowAsync()
{
await Task.Delay(100);
ProgressHUDAppearance.HudBackgroundColor = UIColor.Clear;
ProgressHUDAppearance.RingRadius = 30f;
BTProgressHUD.Show("", maskType: MaskType.Gradient);
await Task.Delay(100);
}
This code does not change the spinner size
🛠 Configuration
Is BTProgressHUD used directy in a MAUI app
📦 Package Version: 2.1.1
📱 iOS Version: 17.3 iphone 12
daniele-bianchi-daze, AwTX, Gaburiere-Remira, francesco-g-giuneco, silviaguerini and 1 more