Apply dart format to all files

This commit is contained in:
dmit.b
2026-05-15 19:09:25 +03:00
parent 6497c1eebf
commit 69f3d09e62
11 changed files with 191 additions and 171 deletions
+4 -10
View File
@@ -2,11 +2,8 @@ import 'package:flutter/material.dart';
class LoadingIndicator extends StatelessWidget {
final String message;
const LoadingIndicator({
super.key,
this.message = 'Loading...',
});
const LoadingIndicator({super.key, this.message = 'Loading...'});
@override
Widget build(BuildContext context) {
@@ -16,12 +13,9 @@ class LoadingIndicator extends StatelessWidget {
children: [
const CircularProgressIndicator(),
const SizedBox(height: 16),
Text(
message,
style: const TextStyle(fontSize: 16),
),
Text(message, style: const TextStyle(fontSize: 16)),
],
),
);
}
}
}