headerBuilder method
Implementation
Widget headerBuilder(context, maxExtent, fixed) {
// 获取当前应用主题,关于主题相关内容将在后面章节介绍,现在
// 我们要从主题中获取一些颜色
var theme = Theme.of(context);
return Material(
color: fixed ? Colors.white : theme.canvasColor,
child: wTitle('Title 1'),
elevation: fixed ? 4 : 0,
shadowColor: theme.appBarTheme.shadowColor,
);
}