remove unused dead code files

This commit is contained in:
2026-07-12 23:17:47 +02:00
parent fe2b3c43b2
commit 94794ff092
13 changed files with 0 additions and 198 deletions
-15
View File
@@ -1,15 +0,0 @@
import 'package:flutter/material.dart';
class About extends StatelessWidget {
const About({super.key});
@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'),
),
);
}
-4
View File
@@ -1,4 +0,0 @@
extension StringExtensions on String {
String capitalize() =>
'${this[0].toUpperCase()}${substring(1).toLowerCase()}';
}
-11
View File
@@ -1,11 +0,0 @@
import 'package:flutter/material.dart';
class UnimplementedDialog {
static void show(BuildContext context) {
showDialog(
context: context,
builder: (context) =>
const AlertDialog(content: Text('Not implemented yet')),
);
}
}