LoginSignup
6
3

More than 3 years have passed since last update.

Flutterでテキストフィールドを囲う色を変える

Posted at

やり方

border: ではなく enabledBorder:で色を設定する。

TextField(
  decoration: InputDecoration(
    enabledBorder: OutlineInputBorder(
      borderSide: BorderSide(
          color: Colors.green,
      ),
    ),
  ),
),

image.png

参考

dart - Flutter - Changing the border color of the OutlineInputBorder - Stack Overflow
Extend InputDecoration borders for disabled/error/focused states by HansMuller · Pull Request #19694 · flutter/flutter · GitHub

6
3
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
6
3