m3_lightmeter/lib/screens/settings/settings_screen.dart

62 lines
1.9 KiB
Dart
Raw Normal View History

2022-10-30 18:23:06 +00:00
import 'package:flutter/material.dart';
2022-10-30 18:59:33 +00:00
import 'package:lightmeter/generated/l10n.dart';
import 'package:lightmeter/res/dimens.dart';
2022-12-16 20:53:26 +00:00
import 'components/fractional_stops_tile.dart';
import 'components/theme_type_tile.dart';
2022-12-17 18:05:50 +00:00
import 'components/version_label.dart';
2022-10-30 18:23:06 +00:00
class SettingsScreen extends StatelessWidget {
const SettingsScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Theme.of(context).colorScheme.surface,
2022-12-17 18:05:50 +00:00
body: SafeArea(
top: false,
child: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
pinned: true,
automaticallyImplyLeading: false,
expandedHeight: Dimens.grid168,
flexibleSpace: FlexibleSpaceBar(
centerTitle: false,
titlePadding: const EdgeInsets.all(Dimens.paddingM),
title: Text(
S.of(context).settings,
style: TextStyle(color: Theme.of(context).colorScheme.onSurface, fontSize: 24),
),
2022-10-30 18:59:33 +00:00
),
2022-12-17 18:05:50 +00:00
actions: [
IconButton(
onPressed: Navigator.of(context).pop,
icon: const Icon(Icons.close),
),
],
2022-10-30 18:59:33 +00:00
),
2022-12-17 18:05:50 +00:00
SliverList(
delegate: SliverChildListDelegate(
[
const StopTypeListTile(),
// const CaffeineListTile(),
// const HapticsListTile(),
const ThemeTypeListTile(),
],
),
),
SliverFillRemaining(
hasScrollBody: false,
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: const [VersionLabel()],
2022-10-30 18:23:06 +00:00
),
2022-10-30 19:07:39 +00:00
),
2022-12-17 18:05:50 +00:00
],
),
2022-10-30 18:23:06 +00:00
),
);
}
}