Hide session expires dialog

Signed-off-by: dab246 <tdvu@linagora.com>
This commit is contained in:
dab246
2025-04-14 15:41:01 +07:00
committed by Dat H. Pham
parent 3a28674660
commit 0a55455321
5 changed files with 31 additions and 86 deletions
-5
View File
@@ -1,13 +1,8 @@
class TwakeAppManager {
bool _hasComposer = false;
bool _isSessionExpiresDialogOpened = false;
void setHasComposer(bool value) => _hasComposer = value;
bool get hasComposer => _hasComposer;
void setSessionExpiresDialogDisplayState(bool value) => _isSessionExpiresDialogOpened = value;
bool get isSessionExpiresDialogOpened => _isSessionExpiresDialogOpened;
}