Create settings_screen.dart

This commit is contained in:
Vadim 2022-10-30 21:23:06 +03:00
parent f1a49a2295
commit 8a30648861

View file

@ -0,0 +1,31 @@
import 'package:flutter/material.dart';
class SettingsScreen extends StatelessWidget {
const SettingsScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Theme.of(context).colorScheme.surface,
body: CustomScrollView(
slivers: <Widget>[
SliverAppBar(
pinned: true,
expandedHeight: 160.0,
actions: [
IconButton(
onPressed: () {},
icon: const Icon(Icons.close),
),
],
),
SliverList(
delegate: SliverChildListDelegate(
[],
),
),
],
),
);
}
}