support for disabling the app’s built-in swipe-back navigation (#249)

This commit is contained in:
MaysWind
2025-09-20 21:57:53 +08:00
parent d947164eb6
commit 18b270debb
17 changed files with 42 additions and 1 deletions
+2
View File
@@ -28,6 +28,7 @@ export interface ApplicationSettings extends BaseApplicationSetting {
timeZone: string;
autoUpdateExchangeRatesData: boolean;
showAccountBalance: boolean;
swipeBack: boolean;
animate: boolean;
// Application Lock
applicationLock: boolean;
@@ -132,6 +133,7 @@ export const DEFAULT_APPLICATION_SETTINGS: ApplicationSettings = {
timeZone: '',
autoUpdateExchangeRatesData: true,
showAccountBalance: true,
swipeBack: true,
animate: true,
// Application Lock
applicationLock: false,