SuperLargeTitle constructor
SuperLargeTitle({
- String largeTitle = "Hello Super Human",
- List<
Widget> ? actions, - TextStyle textStyle = const TextStyle(inherit: false, fontFamily: '.SF Pro Display', fontSize: 34.0, fontWeight: FontWeight.w700, letterSpacing: 0.41),
- double height = kToolbarHeight,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 15.0),
- bool enabled = true,
Implementation
SuperLargeTitle({
this.largeTitle = "Hello Super Human",
this.actions,
this.textStyle = const TextStyle(
inherit: false,
fontFamily: '.SF Pro Display',
fontSize: 34.0,
fontWeight: FontWeight.w700,
letterSpacing: 0.41,
),
this.height = kToolbarHeight,
this.padding = const EdgeInsets.symmetric(horizontal: 15.0),
this.enabled = true,
});