import 'package:flutter/material.dart'; class CustomAppBar extends StatefulWidget { const CustomAppBar({super.key, required this.title}); final String title; @override State createState() => _CustomAppBarState(); } class _CustomAppBarState extends State { @override Widget build(BuildContext context) { return SliverAppBar( pinned: true, automaticallyImplyLeading: false, expandedHeight: 100, flexibleSpace: FlexibleSpaceBar( titlePadding: const EdgeInsets.symmetric(horizontal: 20, vertical: 16), title: Text( widget.title, style: TextStyle( color: Theme.of(context).textTheme.bodyMedium!.color, ), ), ), ); } }