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
+5 -1
View File
@@ -2,6 +2,10 @@ import 'package:flutter/material.dart';
class UnimplementedDialog {
static void show(BuildContext context) {
showDialog(context: context, builder: (context) => const AlertDialog(content: Text('Not implemented yet')));
showDialog(
context: context,
builder: (context) =>
const AlertDialog(content: Text('Not implemented yet')),
);
}
}