Search
 
SCRIPT & CODE EXAMPLE
 

DART

flutter textfield rounded

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

make text filed round flutter

new TextField(
  decoration: new InputDecoration(
      border: new OutlineInputBorder(
        borderRadius: const BorderRadius.all(
          const Radius.circular(10.0),
        ),
      ),
      filled: true,
      hintStyle: new TextStyle(color: Colors.grey[800]),
      hintText: "Type in your text",
      fillColor: Colors.white70),
)
Comment

PREVIOUS NEXT
Code Example
Dart :: flutter padding between text and underline 
Dart :: dart convert int to string 
Dart :: flutter video thumbnail from url 
Dart :: flutter button with icon and text 
Dart :: extend class flutter 
Dart :: dart almashtirish 
Dart :: size row to maximum flutter 
Dart :: How to change the Flutter TextButton height? 
Dart :: replaceall dart 
Dart :: flutter fittedbox 
Dart :: dart exception 
Dart :: dart extension function 
Dart :: dart get type of list 
Dart :: dart custom exception 
Dart :: how to add icon in the app bar in flutter 
Dart :: dart concat string and int 
Dart :: flutter table row height 
Dart :: dart ternary 
Dart :: data types in flutter 
Dart :: convert timeofday to string flutter 
Dart :: flutter cliprect 
Dart :: flutter = How to set Scrollbar colour in flutter? 
Dart :: flutter leading 
Dart :: Flutter how to get percentage of device height 
Dart :: flutter floor database command 
Dart :: flutter mouse tracker error 
Dart :: how to check Flutter app comes to foreground 
Dart :: flutter getx state management 
Dart :: dart string variable stack 
Dart :: app bar color flutter 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =