Answers for "how to make the Bottom Text Box to move with the kebord fluuter"

0

how to make the Bottom Text Box to move with the kebord fluuter

Padding(
  padding:
      EdgeInsets.only(bottom: MediaQuery.of(context).viewInsets.bottom),
  child: Column(children: <Widget>[
    TextField(
      autofocus: true,
      decoration: InputDecoration(hintText: 'Title'),
    ),
    TextField(
      decoration: InputDecoration(hintText: 'Details!'),
      keyboardType: TextInputType.multiline,
      maxLines: 4,
    ),
    TextField(
      decoration: InputDecoration(hintText: 'Additional details!'),
      keyboardType: TextInputType.multiline,
      maxLines: 4,
    ),]);
Posted by: Guest on October-12-2021

Code answers related to "how to make the Bottom Text Box to move with the kebord fluuter"

Browse Popular Code Answers by Language