mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 08:20:40 +00:00
20 lines
529 B
Dart
20 lines
529 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/data/models/dynamic_colors_state.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'components/widget_list_tile_dynamic_colors.dart';
|
|
import 'components/widget_list_tile_theme_type.dart';
|
|
|
|
class ThemeSettings extends StatelessWidget {
|
|
const ThemeSettings({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: [
|
|
const ThemeTypeListTile(),
|
|
const DynamicColorsListTile(),
|
|
],
|
|
);
|
|
}
|
|
}
|