FluoNavigatorStyle constructor
const
FluoNavigatorStyle({
- EdgeInsets topBarPadding = const EdgeInsets.only(left: 20, right: 20),
- Color backButtonColor = Colors.black,
- double progressIndicatorMinHeight = 6,
- BorderRadiusGeometry progressIndicatorBorderRadius = const BorderRadius.all(Radius.circular(3)),
- Color progressIndicatorColor = Colors.black,
- Color progressIndicatorBackgroundColor = const Color(0x10000000),
Implementation
const FluoNavigatorStyle({
this.topBarPadding = const EdgeInsets.only(
left: 20,
right: 20,
),
this.backButtonColor = Colors.black,
this.progressIndicatorMinHeight = 6,
this.progressIndicatorBorderRadius = const BorderRadius.all(
Radius.circular(3),
),
this.progressIndicatorColor = Colors.black,
this.progressIndicatorBackgroundColor = const Color(0x10000000),
});