Settings page and manage accounts navigation options.

This commit is contained in:
Burak Kaan Köse
2026-01-06 17:23:58 +01:00
parent 7cc201f423
commit f105c2f8f0
29 changed files with 874 additions and 197 deletions
@@ -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
}