12
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

FlutterのTextを中央揃えにする

Last updated at Posted at 2020-09-16

FlutterのTextを中央揃えにする

わからなくて最初日本語で調べていたのですがただ単に真ん中にTextをCenterを使って配置しているだけの記事が多く正しい日本語の情報にたどり着けなかったので英語で調べて出てきた正しいやり方を記述します。

やり方

Textの引数にtextAlignというものがあるのでそこでTextAlign.centerを指定するだけです

.dart
Center(
  child: Text(
    "この文章は\n中央揃えになっているはずです\nこんにちは",
    textAlign: TextAlign.center,
  ),
),

実行結果.png

これで適切に中央揃えにすることができました。

12
5
1

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
12
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?