INNER CODE UNIT · Dart
MyApp
wgh136/PicaComic · lib/main.dart:68
class MyApp extends StatefulWidget {
const MyApp({super.key});
static void Function()? updater;
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> with WidgetsBindingObserver {
DateTime time = DateTime.fromMillisecondsSinceEpoch(0);
bool forceRebuild = false;
OverlayEntry? hideContentOverlay;
void hideContent() {
if (hideContentOverlay != null) return;