* Refactor and enhance settings pages and solution structure - Added transition effects to multiple pages for enhanced UI animations. - Moved `AboutPage` and `PersonalizationPage` to settings folder. - Put version into settings card instead of text. * Fixed main logo in about page and changed version styles * revert platforms * Remove useless imprt * Apply this animation globally * Added resize transition for mail rendering page * remove entrance transition from rendering page
12 lines
191 B
C#
12 lines
191 B
C#
using Wino.Views.Abstract;
|
|
|
|
namespace Wino.Views.Settings;
|
|
|
|
public sealed partial class AboutPage : AboutPageAbstract
|
|
{
|
|
public AboutPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|