1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-16 15:33:47 +00:00
Files
mobile/src/Core/Resources/Styles/IThemeDirtablePage.cs
2023-09-29 11:02:19 -03:00

16 lines
398 B
C#

using System.Threading.Tasks;
namespace Bit.App.Styles
{
/// <summary>
/// This is an interface to mark the pages that need theme update special treatment
/// given that they aren't updated automatically by the Forms theme system.
/// </summary>
public interface IThemeDirtablePage
{
bool IsThemeDirty { get; set; }
Task UpdateOnThemeChanged();
}
}