Files
gomix_flutter/lib/settings_tab.dart
minie4 4a6155769c 💄 Start working on the UI
- Add bottom NavBar
- Add top bar
- Start working on the `Mixing` Tab
2024-02-25 19:36:49 +01:00

28 lines
634 B
Dart

import 'package:flutter/material.dart';
class SettingsTab extends StatefulWidget {
const SettingsTab({super.key});
@override
State<SettingsTab> createState() => _SettingsTabState();
}
class _SettingsTabState extends State<SettingsTab> {
@override
Widget build(BuildContext context) {
final ThemeData theme = Theme.of(context);
return Card(
shadowColor: Colors.transparent,
margin: const EdgeInsets.all(8.0),
child: SizedBox.expand(
child: Center(
child: Text(
'Settings',
style: theme.textTheme.titleLarge,
),
),
),
);
}
}