Define named routes and paths, then copy a GoRouter setup with placeholder builders you can swap for real widgets.
One route per line: name /path or /path name. Generated code uses SizedBox() placeholders — replace with your screens.
Paste JSON and get Dart classes with fromJson and toJson for nested objects and lists — no code generation step required.
Open tool →List typed fields and get a data class with copyWith, ==, hashCode, and toString — ideal for immutable UI state.
Open tool →Convert hex (#RGB, #RRGGBB, #AARRGGBB) to Flutter Color(0x…) and Color.fromRGBO(...) for copy-paste into your widgets.
Open tool →