TopBarWidget constructor
const
TopBarWidget({
- Key? key,
- required String title,
- bool isShowSettings = true,
- int? moveLeft,
- required String type,
- required dynamic onTap(),
- required Color fontColor,
- required Color secondaryFontColor,
- required String fontFamily,
- String? background,
- String? backBackground,
- String? settingsBackground,
- required double height,
- required double topPadding,
Implementation
const TopBarWidget({
super.key,
required this.title,
this.isShowSettings = true,
this.moveLeft,
required this.type,
required this.onTap,
required this.fontColor,
required this.secondaryFontColor,
required this.fontFamily,
this.background,
this.backBackground,
this.settingsBackground,
required this.height,
required this.topPadding,
});