v1.4.0simple_gradient_text
Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.
122Likes 58.6K30-day downloads160Pub points
AndroidiOSWebmacOSWindowsLinux
Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.
{"sdk":"flutter"}{"sdk":"flutter"}^2.8.0English project snapshot. Visit GitHub for the latest content.
Requires Flutter >=3.29.0
Create gradient texts simply and quickly.
Only add simple_gradient_text package to your pubspec.yaml.
dependencies:
simple_gradient_text: 1.4.0
Then run flutter get --no-example.
Note: You can add directly - run flutter pub add simple_gradient_text in your project.
GradientText(
'Gradient Text Example',
style: TextStyle(
fontSize: 40.0,
),
colors: [
Colors.blue,
Colors.red,
Colors.teal,
],
),
Flutter Gradient Text Example
GradientText(
'Gradient Text Example',
style: TextStyle(
fontSize: 40.0,
),
gradientType: GradientType.radial,
radius: 2.5,
colors: [
Colors.blue,
Colors.red,
Colors.teal,
],
),
Flutter Gradient Text Example