Merge pull request #344 from bkaankose/features/action-bar

Mail List action bar improvements
This commit is contained in:
Burak Kaan Köse
2024-08-31 15:28:59 +02:00
committed by GitHub
16 changed files with 224 additions and 633 deletions

View File

@@ -64,6 +64,12 @@ namespace Wino.Core.UWP.Services
set => SetPropertyAndSave(nameof(IsThreadingEnabled), value);
}
public bool IsMailListActionBarEnabled
{
get => _configurationService.Get(nameof(IsMailListActionBarEnabled), false);
set => SetPropertyAndSave(nameof(IsMailListActionBarEnabled), value);
}
public bool IsShowSenderPicturesEnabled
{
get => _configurationService.Get(nameof(IsShowSenderPicturesEnabled), true);