ScrollFloat constructor

const ScrollFloat({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Duration duration = const Duration(milliseconds: 600),
  5. Curve curve = Curves.easeOutBack,
  6. double stagger = 0.03,
  7. bool loop = false,
})

Implementation

const ScrollFloat({
  super.key,
  required this.text,
  this.style,
  this.duration = const Duration(milliseconds: 600),
  this.curve = Curves.easeOutBack,
  this.stagger = 0.03,
  this.loop = false,
});