Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewSwitcherTransitionRequest.cs
1using Microsoft.Maui.Controls;
2
4{
8 public sealed class ViewSwitcherTransitionRequest
9 {
11 ViewSwitcher host,
12 View? oldView,
13 View? newView,
14 bool isInitial,
15 bool animate,
16 uint duration,
17 Easing? easing)
18 {
19 this.Host = host;
20 this.OldView = oldView;
21 this.NewView = newView;
22 this.IsInitial = isInitial;
23 this.Animate = animate;
24 this.Duration = duration;
25 this.Easing = easing;
26 }
27
28 public ViewSwitcher Host { get; }
29
30 public View? OldView { get; }
31
32 public View? NewView { get; }
33
34 public bool IsInitial { get; }
35
36 public bool Animate { get; }
37
38 public uint Duration { get; }
39
40 public Easing? Easing { get; }
41 }
42}
Immutable context supplied to IViewTransition implementations.