DraftModeUIPageNavigationItemAndroid constructor

const DraftModeUIPageNavigationItemAndroid({
  1. Key? key,
  2. required Widget child,
  3. required ButtonStyle style,
  4. bool hasLeadingLabel = false,
  5. Future<void> onTap()?,
})

Implementation

const DraftModeUIPageNavigationItemAndroid({
  super.key,
  required this.child,
  required this.style,
  this.hasLeadingLabel = false,
  this.onTap,
});