Answers for "how to control the line in the textfield flutter"

3

text line through flutter

Text('\$8.99', style: TextStyle(decoration: TextDecoration.lineThrough))
Posted by: Guest on September-23-2020
1

flutter text field next line

TextField(
  keyboardType: TextInputType.multiline,
  maxLines: null,
)
Posted by: Guest on June-09-2021

Code answers related to "how to control the line in the textfield flutter"

Browse Popular Code Answers by Language