v1.4.0simple_gradient_text
빠르고 간단한 그라데이션 텍스트를 만들 수 있습니다. 선형 또는 반경 방향으로 선택할 수 있으며, 색상과 표시할 텍스트만 결정하면 됩니다. 매우 쉬워요.
122좋아요 5.9만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