“Flutter Textfield OutlineInputBorder” Ответ

Flutter Textfield OutlineInputBorder

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

Входная граница трепетает

 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

Текстовое поля контур 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',
              ),
B3N73N

Ответы похожие на “Flutter Textfield OutlineInputBorder”

Вопросы похожие на “Flutter Textfield OutlineInputBorder”

Больше похожих ответов на “Flutter Textfield OutlineInputBorder” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования