This commit is contained in:
parent
6eb6f9809e
commit
511e8cda76
9 changed files with 204 additions and 40 deletions
21
lib/page/settings_page.dart
Normal file
21
lib/page/settings_page.dart
Normal file
|
@ -0,0 +1,21 @@
|
|||
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,
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue