theme_genius 1.0.0+1
theme_genius: ^1.0.0+1 copied to clipboard
A Flutter package that provides a simple way to manage theme modes in your app.
example/lib/main.dart
import 'dart:developer';
import 'package:example/app/app.dart';
import 'package:flutter/widgets.dart';
void main() {
FlutterError.onError = (details) {
log(details.exceptionAsString(), stackTrace: details.stack);
};
runApp(const App());
}