YTitleWidget function
标题组件
Implementation
Widget YTitleWidget(String? title, {Color? navBarTitleColor}) {
return Expanded(
child: Center(
child: TextScroll(
title ?? "",
velocity: Velocity(pixelsPerSecond: Offset(10, 0)),
style: TextStyle(color: navBarTitleColor ?? YConfig.navBarTitleColor, fontSize: 18, fontWeight: FontWeight.w700),
),
),
);
}