ba75ce8d6d
- removed obsolete deps - fixed many issues - improved features - added: * favourites * account console * push notifications * background sync * improved settings
18 lines
396 B
Dart
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..."),
|
|
));
|
|
}
|
|
}
|