mirror of
https://github.com/bitwarden/mobile
synced 2025-12-28 06:03:40 +00:00
* 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
12 lines
221 B
C#
12 lines
221 B
C#
using Xamarin.Forms;
|
|
|
|
namespace Bit.App.Styles
|
|
{
|
|
public partial class Light : ResourceDictionary, IThemeResourceDictionary
|
|
{
|
|
public Light()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |