simple_gradient_text 1.0.0 copy "simple_gradient_text: ^1.0.0" to clipboard
simple_gradient_text: ^1.0.0 copied to clipboard

outdated

Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:simple_gradient_text/simple_gradient_text.dart';

// Main method, init the app
void main() {
  runApp(MyApp());
}

// Main app container
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Gradient Text',
      home: Scaffold(
        body: Center(
          child: GradientText(
            'Gradient Text Example',
            colors: [
              Colors.blue,
              Colors.red,
              Colors.teal,
            ],
          ),
        ),
      ),
    );
  }
}
108
likes
0
points
58.1k
downloads

Publisher

verified publisheralexastudillo.com

Weekly Downloads

Create fast and simple gradient texts, whether linear or radial, you just decide the colors and the text to display, very easy.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on simple_gradient_text