dart format

This commit is contained in:
2026-05-08 20:12:40 +02:00
parent 9e139b5704
commit 3b8da1d3d6
295 changed files with 6404 additions and 4161 deletions
+7 -2
View File
@@ -4,7 +4,12 @@ class PlaceholderView extends StatelessWidget {
final IconData icon;
final String text;
final Widget? button;
const PlaceholderView({super.key, required this.icon, required this.text, this.button});
const PlaceholderView({
super.key,
required this.icon,
required this.text,
this.button,
});
@override
Widget build(BuildContext context) => Scaffold(
@@ -19,7 +24,7 @@ class PlaceholderView extends StatelessWidget {
),
Text(
text,
style: const TextStyle(fontSize: 20,),
style: const TextStyle(fontSize: 20),
textAlign: TextAlign.center,
),
const SizedBox(height: 30),