Settings page and manage accounts navigation options.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
namespace Wino.Core.Domain.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// Specifies the animation effect to use during a slide navigation transition.
|
||||
/// </summary>
|
||||
public enum NavigationTransitionEffect
|
||||
{
|
||||
/// <summary>
|
||||
/// The navigation transition effect starts from the left edge of the frame.
|
||||
/// </summary>
|
||||
FromLeft,
|
||||
|
||||
/// <summary>
|
||||
/// The navigation transition effect starts from the right edge of the frame.
|
||||
/// </summary>
|
||||
FromRight,
|
||||
|
||||
/// <summary>
|
||||
/// The navigation transition effect starts from the top edge of the frame.
|
||||
/// </summary>
|
||||
FromTop,
|
||||
|
||||
/// <summary>
|
||||
/// The navigation transition effect starts from the bottom edge of the frame.
|
||||
/// </summary>
|
||||
FromBottom
|
||||
}
|
||||
Reference in New Issue
Block a user