“Удалить линию под текстом в трепете” Ответ

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

Удалить линию под текстом в трепете

Text("My Text",
  style: TextStyle(
    decoration: TextDecoration.none,
  )
);
Rajendra prasad chintapalli

Удалить линию под текстом в трепете

@override
  Widget build(BuildContext context) {
    return Material(
        type: MaterialType.transparency,
        child: new Container(
Rajendra prasad chintapalli

Ответы похожие на “Удалить линию под текстом в трепете”

Вопросы похожие на “Удалить линию под текстом в трепете”

Больше похожих ответов на “Удалить линию под текстом в трепете” по Dart

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

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