feat: Update project version to 9 and enhance debug print functionality

This commit is contained in:
Janez T
2025-10-16 14:03:44 +02:00
parent bf4305bdb3
commit 9ae3acb3dc
5 changed files with 43 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
import 'package:flutter/foundation.dart';
/// Debug print that only outputs in debug builds
void debugPrint(Object? message) {
if (kDebugMode) {
print(message);
}
}