2020-05-09 20:11:54 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
/// Customize the size of the AppBar
|
|
|
|
///
|
|
|
|
/// @author Pierre Hubert
|
|
|
|
|
|
|
|
/// Reduce the size of the appbar
|
|
|
|
class AppBarWrapper extends StatelessWidget implements PreferredSizeWidget {
|
|
|
|
final Widget appBar;
|
|
|
|
final double height;
|
|
|
|
|
2022-03-10 19:39:57 +01:00
|
|
|
const AppBarWrapper({required this.height, required this.appBar})
|
2022-03-11 16:41:29 +01:00
|
|
|
: super();
|
2020-05-09 20:11:54 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) => appBar;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Size get preferredSize => Size.fromHeight(height);
|
|
|
|
}
|