-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Closed
Copy link
Labels
partner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/iosplatform/windowss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Milestone
Description
Description
On both iOS and Windows platforms, setting Page.IsBusy = true does not result in the display of a busy/loading indicator, unlike on Android where the indicator is shown as expected.
Steps to Reproduce
- Create a new MAUI ContentPage.
- Set IsBusy = true in a button click.
- Run the app on iOS or Windows.
- Observe that no busy indicator appears.
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiApp1.MainPage">
<StackLayout>
<Label Text="Welcome to .NET MAUI!"
Margin="0, 20"
FontSize="24"
VerticalOptions="Center"
HorizontalOptions="Center"/>
<Button Text="Set IsBusy to true"
x:Name="IsBusyButton"
Margin="0,20"
VerticalOptions="Center"
HorizontalOptions="Center"
Clicked="Button_SetIsBusy"/>
</StackLayout>
</ContentPage>
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
void Button_SetIsBusy(object sender, EventArgs e)
{
IsBusy = !IsBusy;
IsBusyButton.Text = IsBusy ? "Set IsBusy to false" : "Set IsBusy to true";
}
}Link to public reproduction project repository
No response
Version with bug
9.0.70 SR7
Is this a regression from previous behavior?
No, this is something new
Last version that worked well
Unknown/Other
Affected platforms
iOS, Windows
Affected platform versions
No response
Did you find any workaround?
No response
Relevant log output
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
partner/syncfusionIssues / PR's with Syncfusion collaborationIssues / PR's with Syncfusion collaborationplatform/iosplatform/windowss/triagedIssue has been reviewedIssue has been revieweds/verifiedVerified / Reproducible Issue ready for Engineering TriageVerified / Reproducible Issue ready for Engineering Triaget/bugSomething isn't workingSomething isn't working
Type
Projects
Status
Done