fix: formatting

This commit is contained in:
2026-07-29 01:42:34 +02:00
parent 521c8f8c4e
commit 50e6fca9d1
32 changed files with 501 additions and 575 deletions
+2 -5
View File
@@ -7,10 +7,7 @@ import '../viewmodels/product_list_view_model.dart';
class AppBootstrap extends StatefulWidget {
final Widget child;
const AppBootstrap({
super.key,
required this.child,
});
const AppBootstrap({super.key, required this.child});
@override
State<AppBootstrap> createState() => _AppBootstrapState();
@@ -33,4 +30,4 @@ class _AppBootstrapState extends State<AppBootstrap> {
Widget build(BuildContext context) {
return widget.child;
}
}
}