fadingEdgeStartFraction property

double fadingEdgeStartFraction
final

The fraction of the Marquee that will be faded on the left or top. 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 fadingEdgeStartFraction;