- added A LOT, TLTD Settings menu, updated homepage tiles, added color settings... - TODO: - update README - update license & copyright info - cleanup code - merge code parts to server side - complete settings - fix 11/12 - add caching - muuuuuuuch more...
23 lines
506 B
Dart
23 lines
506 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class AppearanceSettings extends StatelessWidget {
|
|
const AppearanceSettings({Key? key}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text("Aussehen"),
|
|
centerTitle: true,
|
|
),
|
|
body: ListView(
|
|
padding: const EdgeInsets.fromLTRB(5, 5, 5, 5),
|
|
children: [
|
|
|
|
],
|
|
));
|
|
}
|
|
} |