21 lines
589 B
Dart
21 lines
589 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../resources/colors_schemes/lib_color_schemes.g.dart';
|
|
|
|
class SettingsPage extends StatelessWidget {
|
|
const SettingsPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
iconTheme: IconThemeData(
|
|
color: lightColorScheme.onBackground,
|
|
),
|
|
title: Text('Settings', style: TextStyle(color: lightColorScheme.onPrimaryContainer)),
|
|
backgroundColor: lightColorScheme.primaryContainer,
|
|
elevation: 0,
|
|
),
|
|
);
|
|
}
|
|
}
|