Obsidian/Recognition/Programing/Flutter/TextField.md

564 B

높이조정

isDense: true contentPadding: EdgeInsets.all(8) 으로 padding과 magin을 조정할 수 있다.

TextField(
        decoration: InputDecoration(
          border: OutlineInputBorder(),
          labelText: 'Even Densed TextFiled',
          isDense: true,                      // Added this
          contentPadding: EdgeInsets.all(8),  // Added this
        ),
      )

배경색상 변경

filled: true,
fillColor: Colors.orange,

decoration: const InputDecoration(  
  filled: true,  
 fillColor: Colors.orange,
),