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

A new Flutter package for creating gradient text.

Gradient Text #

Create eye-catching and vibrant text with ease using the Flutter Gradient Text package! This versatile package empowers Flutter developers to integrate gradient effects seamlessly into their applications. Whether you're looking to add a subtle touch or make a bold statement, the Flutter Gradient Text package offers a wide range of gradient types to suit your design needs.

Key Features #

  • Easy Integration: Quickly integrate gradient text into your Flutter app with just a few lines of code.
  • Customizable: Tailor the gradient to your liking by choosing from a variety of gradient types and adjusting colors, direction, and more.
  • Performance-Optimized: Enjoy smooth rendering and performance, ensuring a seamless user experience.
  • Versatile Usage: Perfect for headlines, banners, buttons, and any other text elements that need a pop of color.

Get ready to elevate your app's visual appeal with the Flutter Gradient Text package. Explore the endless possibilities of gradient text and captivate your users in style!

Usage #

    GradientText(
    	text: 'LinearGradient text',
    	style: Theme.of(context).textTheme.headlineLarge,
    ),

    GradientText(
        text: 'RadialGradient text',
        gradient: const RadialGradient(
            colors: [
                Color(0xFF9747FF),
            	Color(0xFF275AFF),
                Color(0xFF56B8FF),
            ],
        ),
        style: Theme.of(context).textTheme.headlineLarge,
    ),
           
	GradientText(
        text: 'SweepGradient text',
        gradient: const SweepGradient(
        	colors: [
            	Color(0xFF9747FF),
            	Color(0xFF275AFF),
            	Color(0xFF56B8FF),
        	],
		),
        style: Theme.of(context).textTheme.headlineLarge,
    ),
0
likes
140
pub points
71%
popularity

Publisher

verified publishershadatrahman.com

A new Flutter package for creating gradient text.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on gradient_txt