“Flutter Textfield OutlineInputborder” Kode Jawaban

Flutter Textfield OutlineInputborder

TextField(
                decoration: InputDecoration(
                  border: OutlineInputBorder(
                    borderRadius: BorderRadius.circular(30.0),
                  )
                ),
              )
Sore Serval

Input Border Flutter

 TextField(
        decoration: new InputDecoration(
            focusedBorder: OutlineInputBorder(
                borderSide: BorderSide(color: Colors.greenAccent, width: 5.0),
            ),
            enabledBorder: OutlineInputBorder(
                borderSide: BorderSide(color: Colors.red, width: 5.0),
            ),
            hintText: 'Mobile Number',
        ),
    ),
Obedient Ocelot

Garis besar bidang teks berkibar

TextField(
              decoration: new InputDecoration(
                focusedBorder: OutlineInputBorder(
                  borderSide: BorderSide(color: Colors.greenAccent, width: 5.0),
                ),
                enabledBorder: OutlineInputBorder(
                  borderSide: BorderSide(color: Colors.red, width: 5.0),
                ),
                hintText: 'Mobile Number',
              ),
B3N73N

Jawaban yang mirip dengan “Flutter Textfield OutlineInputborder”

Pertanyaan yang mirip dengan “Flutter Textfield OutlineInputborder”

Lebih banyak jawaban terkait untuk “Flutter Textfield OutlineInputborder” di Dart

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya