Flutterで大きい文字サイズを指定したときに、
いい感じにサイズダウンしてほしくて、
いろいろ調べてみたときの備忘録(*´ω`*)
FittedBoxを使うといいらしい(*´ω`*)
AppBar( centerTitle: true, title: FittedBox( fit: BoxFit.fitWidth, child: Text('Hey this is my long text appbar title') ), ),
Flutterで大きい文字サイズを指定したときに、
いい感じにサイズダウンしてほしくて、
いろいろ調べてみたときの備忘録(*´ω`*)
FittedBoxを使うといいらしい(*´ω`*)
AppBar( centerTitle: true, title: FittedBox( fit: BoxFit.fitWidth, child: Text('Hey this is my long text appbar title') ), ),