LoginSignup
0
1

More than 3 years have passed since last update.

【Flutter】Textを簡単にグラデーションさせる

Posted at

パッケージのインストール

gradient_textを導入すれば簡単にテキストのグラデーションを実装できます。

pubsub.yml
gradient_text: ^1.0.2

インポート

import 'package:gradient_text/gradient_text.dart';

グラデーション可能なテキストウィジェットを作成

テキストウィジェットを下記のGradientTextに置き換えるだけです。

GradientText("テキスト",
  gradient: LinearGradient(
      //ここでグラデーションの色を複数設定できる
      colors: [Colors.deepPurple, Colors.deepOrange, Colors.pink]
  ),
  style: TextStyle(fontSize: 30), //スタイルも設定可能
  textAlign: TextAlign.center); //テキストの配置
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1