bae624dd67
- 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...
19 lines
438 B
Dart
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..."),
|
|
));
|
|
}
|
|
}
|