Scaffold out initial state management

This commit is contained in:
2026-03-17 16:14:41 -05:00
parent d4b84e4d76
commit e92c62270c
4 changed files with 62 additions and 9 deletions

7
lib/util.dart Normal file
View File

@@ -0,0 +1,7 @@
import 'package:flutter/foundation.dart';
void debugLog(String? msg, {int? wrapWidth}) {
if (kDebugMode) {
debugPrint(msg, wrapWidth: wrapWidth);
}
}