Как расширить текстовое поле во флаттере, чтобы оно выглядело как текстовая областьAndroid

Форум для тех, кто программирует под Android
Anonymous
Как расширить текстовое поле во флаттере, чтобы оно выглядело как текстовая область

Сообщение Anonymous »

Когда я нажимаю на textField в режиме LandScape, я хочу развернуть на весь экран лайки WhatsApp
[img]https://i .sstatic.net/G8LD1.gif[/img]

TextFormField(
keyboardType: TextInputType.number,
decoration: InputDecoration(
prefixIcon: Padding(
padding: EdgeInsets.all(0.0),
child: Icon(Icons.person,
size: 40.0, color: Colors.white),
),
hintText: "Input your opinion",
hintStyle: TextStyle(color: Colors.white30),
border: OutlineInputBorder(
borderRadius:
BorderRadius.all(new Radius.circular(25.0))),
labelStyle: TextStyle(color: Colors.white)),
textAlign: TextAlign.center,
style: TextStyle(
color: Colors.white,
fontSize: 25.0,
),
controller: host,
validator: (value) {
if (value.isEmpty) {
return "Empty value";
}
},
)


Подробнее здесь: https://stackoverflow.com/questions/549 ... -text-area

Вернуться в «Android»