Disable print statements

This commit is contained in:
Shawn 2023-04-18 10:41:46 -06:00
parent 11aad53f71
commit f786e3f5dc
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ class AppLogic {
/// If a view overrides this, it is responsible for setting it back to [supportedOrientations] when disposed. /// If a view overrides this, it is responsible for setting it back to [supportedOrientations] when disposed.
void _updateSystemOrientation() { void _updateSystemOrientation() {
final axisList = _supportedOrientationsOverride ?? supportedOrientations; final axisList = _supportedOrientationsOverride ?? supportedOrientations;
debugPrint('updateDeviceOrientation, supportedAxis: $axisList'); //debugPrint('updateDeviceOrientation, supportedAxis: $axisList');
final orientations = <DeviceOrientation>[]; final orientations = <DeviceOrientation>[];
if (axisList.contains(Axis.vertical)) { if (axisList.contains(Axis.vertical)) {
orientations.addAll([ orientations.addAll([

View File

@ -29,7 +29,7 @@ class AppStyle {
} else { } else {
scale = .85; // small phone scale = .85; // small phone
} }
debugPrint('screenSize=$screenSize, scale=$scale'); //debugPrint('screenSize=$screenSize, scale=$scale');
} }
late final double scale; late final double scale;