.NET MAUI Popup Animations
The .NET MAUI Popup provides two built-in animations that are played when the Popup is shown or hidden.
You can apply the desired animation through the AnimationType
property which exposes the following options:
- (Disables the animation)
None
- (Default)
Fade
Zoom
You can also customize the duration and acceleration over time (easing) through the following properties:
-
AnimationDuration
—Set in ms. Defaults to 300 ms. -
AnimationEasing
(of typeMicrosoft.Maui.Easing
)—Defaults toEasing.Linear
.