Hello,
I'm attempting to use SfRotator inside of an SfPopup on full screen mode (transparent background), but I am getting an empty/not visible rotator currently. I'm curious if this is possible? Example code below:
<sfPopup:SfPopupLayout StaysOpen="True" HorizontalOptions="Fill" VerticalOptions="Fill" >
<sfPopup:SfPopupLayout.PopupView>
<sfPopup:PopupView ShowFooter="False" ShowHeader="False" BackgroundColor="Transparent" AnimationMode="Zoom" IsFullScreen="True" >
<sfPopup:PopupView.PopupStyle>
<sfPopup:PopupStyle BorderColor="Transparent"/>
</sfPopup:PopupView.PopupStyle>
<sfPopup:PopupView.ContentTemplate>
<DataTemplate>
<Grid HorizontalOptions="Fill" VerticalOptions="Fill" BackgroundColor="Transparent">
<rotator:SfRotator x:Name="rotatorImage" SelectedDotColor="{DynamicResource accentColor}" ItemsSource="{Binding RotatorItems}" BackgroundColor="Transparent">
<rotator:SfRotator.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Image}" Aspect="AspectFill"/>
</DataTemplate>
</rotator:SfRotator.ItemTemplate>
</rotator:SfRotator>
</Grid>
</DataTemplate>
</sfPopup:PopupView.ContentTemplate>
</sfPopup:PopupView>
</sfPopup:SfPopupLayout.PopupView>
</sfPopup:SfPopupLayout>