You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
It seem like transition is not animating or stops randomly.
If I comment transition, then style is applied correctly (but, of course, without an animation)
To Reproduce
Run XAML below on iOS. It works as expected on Android and macOS desktop.
<StackPanel Classes.rotated="{Binding #Rotate.IsChecked}"HorizontalAlignment="Center"VerticalAlignment="Center">
<StackPanel.Styles>
<StyleSelector="StackPanel">
<SetterProperty="RenderTransform"Value="rotate(0)" />
</Style>
<StyleSelector="StackPanel.rotated">
<SetterProperty="RenderTransform"Value="rotate(45deg)" />
</Style>
</StackPanel.Styles>
<StackPanel.Transitions>
<Transitions>
<TransformOperationsTransitionProperty="RenderTransform"Duration="0:0:1"Easing="ExponentialEaseIn" />
</Transitions>
</StackPanel.Transitions>
<TextBlockText="Transition not working on iOS"TextWrapping="Wrap"TextAlignment="Center"FontSize="40"FontWeight="Bold"HorizontalAlignment="Center"VerticalAlignment="Center">
</TextBlock>
<CheckBoxx:Name="Rotate"HorizontalAlignment="Center">Rotate</CheckBox>
</StackPanel>
Expected behavior
StackPanel should rotate with an animation.
Desktop (please complete the following information):
Desktop (IDE) - macOS 13.6 M2
OS: iOS latest emulator and iPad 15.7.9
Avalonia: 11.0.2+ (including latest beta)
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Describe the bug
It seem like transition is not animating or stops randomly.
If I comment transition, then style is applied correctly (but, of course, without an animation)
To Reproduce
Run XAML below on iOS. It works as expected on Android and macOS desktop.
Expected behavior
StackPanel should rotate with an animation.
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: