VAnchor constructor

const VAnchor({
  1. Key? key,
  2. required String hash,
  3. required Widget child,
  4. bool? replaceUrlOnTap,
  5. bool active = true,
  6. Duration duration = Duration.zero,
  7. Curve curve = Curves.ease,
  8. ScrollPositionAlignmentPolicy alignmentPolicy = ScrollPositionAlignmentPolicy.explicit,
  9. Alignment hoveringOverlayAlignment = Alignment.bottomLeft,
  10. Widget? hoveringOverlay,
})

Implementation

const VAnchor({
  Key? key,
  required this.hash,
  required this.child,
  this.replaceUrlOnTap,
  this.active = true,
  this.duration = Duration.zero,
  this.curve = Curves.ease,
  this.alignmentPolicy = ScrollPositionAlignmentPolicy.explicit,
  this.hoveringOverlayAlignment = Alignment.bottomLeft,
  this.hoveringOverlay,
}) : super(key: key);