Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-03 13:30:07 +08:00
parent 84e24b5827
commit daf5d302e3
59 changed files with 315 additions and 282 deletions

View File

@@ -28,8 +28,10 @@ Future<void> landScape() async {
);
}
} catch (exception, stacktrace) {
debugPrint(exception.toString());
debugPrint(stacktrace.toString());
if (kDebugMode) {
debugPrint(exception.toString());
debugPrint(stacktrace.toString());
}
}
}
@@ -98,7 +100,9 @@ Future<void> showStatusBar() async {
);
}
} catch (exception, stacktrace) {
debugPrint(exception.toString());
debugPrint(stacktrace.toString());
if (kDebugMode) {
debugPrint(exception.toString());
debugPrint(stacktrace.toString());
}
}
}