This repository has been archived on 2023-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
meincantor-app/lib/schulcomputer.dart
Denys Konovalov ba75ce8d6d ==1.0.0==
- removed obsolete deps
- fixed many issues
- improved features
- added:
  * favourites
  * account console
  * push notifications
  * background sync
  * improved settings
2021-12-19 22:20:56 +01:00

18 lines
396 B
Dart

import 'package:flutter/material.dart';
class SC extends StatelessWidget {
const SC({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Schulcomputer"),
centerTitle: true,
),
body: const Center(
child: Text("Derzeit nichts hier..."),
));
}
}