Answers for "flutter textformfield outline border"

5

flutter textfield outlineinputborder

TextField(
                decoration: InputDecoration(
                  border: OutlineInputBorder(
                    borderRadius: BorderRadius.circular(30.0),
                  )
                ),
              )
Posted by: Guest on August-28-2021
0

text field outline 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',
              ),
Posted by: Guest on June-11-2020

Code answers related to "flutter textformfield outline border"

Browse Popular Code Answers by Language