0
1

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 5 years have passed since last update.

Flutter製iOSアプリのFABで、スペース区切りのlabelが改行される

Posted at

事象

FABのlabelに渡したTextが、スペースで改行される。
(ちなみにスペースを2つ入れると改行されません。)

image.png

FloatingActionButton.extended(
  icon: Icon(Icons.gamepad),
  label: const Text("START GAME"),
  shape: BeveledRectangleBorder(borderRadius: BorderRadius.circular(16)),
);

暫定対応

TextにTextStyle(letterSpacing: 1)を設定することで、事象が改善されました。

image.png

FloatingActionButton.extended(
  icon: Icon(Icons.gamepad),
  label: const Text("START GAME", style: TextStyle(letterSpacing: 1)),
  shape: BeveledRectangleBorder(borderRadius: BorderRadius.circular(16)),
);

根本原因

内部実装など追えていないため、何故改行されるのか、何故letterSpacingを入れると解消されるのかはまだ判明していません。
分かり次第追記します。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?