fadingEdgeEndFraction property

double fadingEdgeEndFraction
final

The fraction of the Marquee that will be faded on the right or down. By default, there won't be any fading.

Sample code

This marquee fades the edges while scrolling

Marquee(
  showFadingOnlyWhenScrolling: true,
  fadingEdgeStartFraction: 0.1,
  fadingEdgeEndFraction: 0.1,
  text: 'Example text.',
)

Implementation

final double fadingEdgeEndFraction;