v1.4.0simple_gradient_text
त्वरित और सरल धारीदार पाठ बनाएं, चाहे रैखिक हो या त्रिज्या के अनुसार, आपको सिर्फ रंग और प्रदर्शित करने वाला पाठ चुनना है, बहुत आसान।
122लाइक 58.6 हज़ार30-दिन डाउनलोड160Pub अंक
AndroidiOSWebmacOSWindowsLinux
त्वरित और सरल धारीदार पाठ बनाएं, चाहे रैखिक हो या त्रिज्या के अनुसार, आपको सिर्फ रंग और प्रदर्शित करने वाला पाठ चुनना है, बहुत आसान।
{"sdk":"flutter"}{"sdk":"flutter"}^2.8.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
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