FluoNavigatorStyle constructor

const FluoNavigatorStyle({
  1. EdgeInsets topBarPadding = const EdgeInsets.only(left: 20, right: 20),
  2. Color backButtonColor = Colors.black,
  3. double progressIndicatorMinHeight = 6,
  4. BorderRadiusGeometry progressIndicatorBorderRadius = const BorderRadius.all(Radius.circular(3)),
  5. Color progressIndicatorColor = Colors.black,
  6. 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),
});