Text( "Gradient Text Example", style: TextStyle( fontSize: 50.0, fontWeight: FontWeight.bold, foreground: Paint() ..shader = const LinearGradient( colors: [ Colors.red, Colors.blue, ], ).createShader( const Rect.fromLTWH(0.0, 0.0, 200.0, 70.0), ), ), textAlign: TextAlign.center, ),