Indicator IsVisible Property Nonfunctional
See original GitHub issueSetting the IsVisible property in the indicator XAML does not have effect, as the IsVisible property is set automatically regardless.
The issue occurs in IndicatorsControl.cs : 217 - ResetVisibility()
Suggestion: Make a private property that respects the XAML state and view models property change notification that ResetVisibility() respects.
Example of Intended Implementation:
<cards:CarouselView ItemsSource="{Binding ConnectedDevices}" SelectedIndex="{Binding SelectedIndex}" SlideShowDuration="0" IsCyclical="False" VerticalOptions="Start">
<cards:CarouselView.ItemTemplate>
<DataTemplate>
<ContentView>
<StackLayout HorizontalOptions="Center" VerticalOptions="Start" Margin="0,0,0,40">
<!-- Stuff -->
</StackLayout>
</ContentView>
</DataTemplate>
</cards:CarouselView.ItemTemplate>
<cardcontrols:IndicatorsControl ToFadeDuration="0" Margin="0" VerticalOptions="End" IsVisible="{Binding IndicatorVisible}" />
</cards:CarouselView>
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (7 by maintainers)
Top Results From Across the Web
Activity Indicator is not visible on xaml page in xamarin. ...
I have an activity indicator on xaml page. Initially its IsVisible property is false. I have a button on page. When user click...
Read more >IsVisible doesn't work anymore · Issue #8044 · dotnet/maui
The native property of the control, Visibility , sets the ViewStates correctly (Visible, Gone etc). In fact, this is validated by tests added ......
Read more >Bindable Property is not working in Content View .net Maui
I have created a content view ,added Boolean property and button to it. ... Source={x:Reference CustomView}}" /> <Button IsVisible="{Binding ...
Read more >How to show busy indicator on each item until data loaded ...
Bind the bool values for the IsVisible properties to switch between indicator and button while loading the description. XAML. <ContentPage> <ContentPage.
Read more >Binding not working xamarin forms. but when I scroll, several ...
1 Property not updating Xamarin Forms Binding. The application should function like the debug screenshot where the filename is visible at the top...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@AndreiMisiukevich
I just got a chance to test the MinimumVisibleIndicatorsCount just now. It is verified.
Thank you very much for implementing this change so quickly! 👍 👍
@InnerScript thanks 😃