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 bae624dd67 ==0.6.5==
- added A LOT, TLTD
- TODO:
  - update README
  - update license & copyright info
  - cleanup code
  - merge code parts to server side
  - add more settings
  - fix 11/12
  - add more timetable options
  - add timetable additional info
  - muuuuuuuch more...
2021-09-14 20:55:58 +02:00

19 lines
438 B
Dart

import 'package:flutter/cupertino.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..."),
));
}
}