1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 06:03:40 +00:00
Files
mobile/src/App/Styles/Light.xaml.cs
Federico Maccaroni 74e90da662 Improve Theming (#1707)
* Improved theming logic and performance, also fixed some issues regarding changing the theme after vault timeout and fixed theme applying on password generator/history

* Removed messenger from theme update, and now the navigation stack is traversed and each IThemeDirtablePage gets theme updated

* Improved code on update theme on pages
2022-01-24 17:20:48 -03:00

12 lines
221 B
C#

using Xamarin.Forms;
namespace Bit.App.Styles
{
public partial class Light : ResourceDictionary, IThemeResourceDictionary
{
public Light()
{
InitializeComponent();
}
}
}