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 -10
View File
@@ -1,4 +1,3 @@
import 'package:flutter/material.dart';
class About extends StatelessWidget {
@@ -6,13 +5,11 @@ class About extends StatelessWidget {
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(
title: const Text('Über diese App'),
),
body: const Card(
elevation: 1,
borderOnForeground: true,
child: Text('Marianum Fulda'),
),
);
appBar: AppBar(title: const Text('Über diese App')),
body: const Card(
elevation: 1,
borderOnForeground: true,
child: Text('Marianum Fulda'),
),
);
}