[Flutter]TextFormFieldの左側にテキストをずっと表示するには?

Flutter

どうも、ちょげ(@chogetarou)です。

TextFormFieldの左側にテキストを常に表示する方法を紹介します

スポンサーリンク

方法

インターフェース, インターネット, プログラム, ブラウザ, Www

TextFormFieldの左側にテキストを常に表示するには、InputDecoraitonを使います。

具体的には、InputDecorationの引数「prefixIcon」にTextを指定します。

TextFormField(
  decoration: InputDecoration(
      prefixIcon: Text('テキスト'),
  ),
),

InputDecorationの引数「prefixIcon」を使えば、TextFormFieldの左側にテキストを常に表示することが出来ます。

使用例

以下は、使用例です。

TextFormField(
  decoration: InputDecoration(
    prefixIcon: Padding(
      padding: const EdgeInsets.all(12.0),
      child: Text('テキスト'),
    ),
  ),
),

コメント

タイトルとURLをコピーしました