ba75ce8d6d
- removed obsolete deps - fixed many issues - improved features - added: * favourites * account console * push notifications * background sync * improved settings
19 lines
458 B
Dart
19 lines
458 B
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: const [],
|
|
));
|
|
}
|
|
}
|