Files
Obtainium/lib/components/custom_app_bar.dart
Imran Remtulla e0c69b9cf4 Lint all files
2025-06-13 16:53:36 -04:00

31 lines
763 B
Dart

import 'package:flutter/material.dart';
class CustomAppBar extends StatefulWidget {
const CustomAppBar({super.key, required this.title});
final String title;
@override
State<CustomAppBar> createState() => _CustomAppBarState();
}
class _CustomAppBarState extends State<CustomAppBar> {
@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,
),
),
),
);
}
}