LoginSignup
0
1

More than 1 year has passed since last update.

FlutterでTextの文字の下が見切れる(Web)

Posted at

はじめに

Textをいれた際にiOS/Androidは問題なく表示されますが、Web版だとなぜか字の下が見切れてしまいました。
以下のような感じ
スクリーンショット 2021-07-01 16.41.02.png

バグ?とは思いますが、一応、修正の仕方を備忘録として....

更新履歴

2021.7.1 初回投稿

環境

  • macOS Big Sur(11.4)
  • Flutter (Channel stable, 2.0.6, on macOS 11.4 20F71 darwin-x64, locale ja-JP)
  • Android toolchain - develop for Android devices (Android SDK version 30.0.3)
  • Xcode - develop for iOS and macOS
  • Chrome - develop for the web
  • Android Studio (version 4.1)
  • VS Code (version 1.57.1)

参考にしたサイト

やりたいこと

  • Text入力した文字を見切れないようにしたい

やりかた

  1. Textにプロパティheightを設定する。1.0〜2.0ぐらいがいいかと...
Text(
      '土曜・日曜土曜はバーのみ20時〜23時半まで営業しています。新型コロナウィルス感染拡大により、',
      style: TextStyle(
        fontSize: 16,
        height: 1.2,
      ),
    )   

これで直りました。
スクリーンショット 2021-07-01 16.42.57.png

以上

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