Search
 
SCRIPT & CODE EXAMPLE
 

DART

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),
  )
Comment

flutter textfield remove 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: "Hint here"),
  )
Comment

PREVIOUS NEXT
Code Example
Dart :: TextStyle underline flutter 
Dart :: flutter flotingactionbutton position 
Dart :: flutter transparent appbar 
Dart :: text overflow ellipsis flutter 
Dart :: copy to clipboard flutter 
Dart :: flutter textfield label align top 
Dart :: flutter padding top and bottom 
Dart :: flutter switch color 
Dart :: flutter flotingactionbutton color 
Dart :: canonical tag 
Dart :: dart timestamp 
Dart :: add bg image to scaffold flutter 
Dart :: dart absolute value 
Dart :: setting backgroundColor for snack bar does not change background color 
Dart :: flutter listtile minverticalpadding 
Dart :: increase text size of Test flutter 
Dart :: flutter espacio entre widgets 
Dart :: dart map foreach 
Dart :: inheritance in dart 
Dart :: flutter slider color 
Dart :: flutter text 
Dart :: flutter datatypes check 
Dart :: dart date add year 
Dart :: drawerheader height flutter 
Dart :: how to add cards in flutter 
Dart :: dart deep copy list 
Dart :: flutter future return error 
Dart :: media query flutter 
Dart :: how to blur container in flutter 
Dart :: const vs final flutter 
ADD CONTENT
Topic
Content
Source link
Name
3+3 =