importer/Importer/App.xaml.cs
2023-02-16 14:20:34 -05:00

23 lines
538 B
C#

namespace Bit.Importer;
public partial class App : Application
{
public App()
{
// Uncomment below to force light theme
// Current.UserAppTheme = AppTheme.Light;
InitializeComponent();
MainPage = new AppShell();
}
protected override Window CreateWindow(IActivationState activationState)
{
var window = base.CreateWindow(activationState);
window.Width = 650;
window.Height = 1100;
window.Title = "Bitwarden Importer";
return window;
}
}