kokogento
@kokogento (ここ げんと)

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Flutter テキストを上下だけ中央にするには?

解決したいこと

スクリーンショット 2021-06-12 12.24.55.jpg

「作品の見所」と言うテキストを、黄色の枠内で上下だけ中央にしたいです!

「縦だけ中央」のイメージとしては下記👇のような状態です。
上下に中央で左に少しのpaddingを持たせるイメージです。
スクリーンショット 2021-06-12 12.30.53.jpg

該当のソース

Container(
    width: MediaQuery.of(context).size.width,
    height: 50,
    color: Theme.of(context).primaryColor,
      child: Text(
         '作品の見所',
          style: Theme.of(context).textTheme.headline5,
           ),
      )
0

1Answer

Container width: double.infinity,にするのがポイントかと。。

Container(
              height: 60,
              width: double.infinity,
              color: Colors.amber[700],
              child: Text(
                '作品の見所',
                style: TextStyle(
                  color: Colors.white,
                  fontWeight: FontWeight.bold,
                  fontSize: 21,
                ),
              ),
              alignment: Alignment.centerLeft, // ←
              padding: EdgeInsets.symmetric(horizontal: 15), // ←
            ),
0Like

Your answer might help someone💌