Hide debug-viewers throughout the app when debug-mode is not enabled

This commit is contained in:
2023-06-07 19:39:11 +02:00
parent f8ac83a296
commit 7ec339af0c
8 changed files with 34 additions and 19 deletions

View File

@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class About extends StatelessWidget {
const About({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Über diese App"),
),
body: const Card(
elevation: 1,
borderOnForeground: true,
child: Text("Marianum Fulda"),
),
);
}
}