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: [ SliverAppBar( pinned: true, expandedHeight: 160.0, actions: [ IconButton( onPressed: () {}, icon: const Icon(Icons.close), ), ], ), SliverList( delegate: SliverChildListDelegate( [], ), ), ], ), ); } }