NesRunningTextLines constructor

const NesRunningTextLines({
  1. required List<String> texts,
  2. double speed = .08,
  3. TextStyle? textStyle,
  4. VoidCallback? onEnd,
  5. bool running = true,
  6. MainAxisAlignment linesAlignment = MainAxisAlignment.start,
  7. Key? key,
})

A widget that displays running text, one line after the other.

Implementation

const NesRunningTextLines({
  required this.texts,
  this.speed = .08,
  this.textStyle,
  this.onEnd,
  this.running = true,
  this.linesAlignment = MainAxisAlignment.start,
  super.key,
});