“Flutter Textformfield Hide Underline” Ответ

Flutter Textformfield Hide Underline

TextFormField(
    cursorColor: Colors.black,
    keyboardType: inputType,
    decoration: new InputDecoration(
        border: InputBorder.none,
        focusedBorder: InputBorder.none,
        enabledBorder: InputBorder.none,
        errorBorder: InputBorder.none,
        disabledBorder: InputBorder.none,
        contentPadding:
            EdgeInsets.only(left: 15, bottom: 11, top: 11, right: 15),
        hintText: sLabel),
  )
Lovely Llama

Flutter Textfield Удалить подчеркивание

TextFormField(
    cursorColor: Colors.black,
    keyboardType: inputType,
    decoration: new InputDecoration(
        border: InputBorder.none,
        focusedBorder: InputBorder.none,
        enabledBorder: InputBorder.none,
        errorBorder: InputBorder.none,
        disabledBorder: InputBorder.none,
        contentPadding:
            EdgeInsets.only(left: 15, bottom: 11, top: 11, right: 15),
        hintText: "Hint here"),
  )
Nervous Newt

Ответы похожие на “Flutter Textformfield Hide Underline”

Вопросы похожие на “Flutter Textformfield Hide Underline”

Больше похожих ответов на “Flutter Textformfield Hide Underline” по Dart

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

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