Answers for "flutter bottom sheet with input"

1

put bottom sheet above keyboard flutter

showModalBottomSheet<void>(
  isScrollControlled: true,
  context: context,
  shape: RoundedRectangleBorder(
    borderRadius: BorderRadius.only(
        topLeft: Radius.circular(30.0),
        topRight: Radius.circular(30.0)),
  ),
  builder: (BuildContext context) {
    return Padding(
        padding: MediaQuery.of(context).viewInsets,
        child: Container(
            child: Wrap(
          children: <Widget>[
            TextField(
              decoration: InputDecoration(
                  border: InputBorder.none,
                  hintText: 'Enter a search term'),
            ),
            TextField(
              decoration: InputDecoration(
                  border: InputBorder.none,
                  hintText: 'Enter a search term'),
            ),
            TextField(
              decoration: InputDecoration(
                  border: InputBorder.none,
                  hintText: 'Enter a search term'),
            ),
            TextField(
              decoration: InputDecoration(
                  border: InputBorder.none,
                  hintText: 'Enter a search term'),
            )
          ],
        )));
  },
);
Posted by: Guest on September-14-2021
0

flutter bottom sheet input button overlay flow by

Scaffold(
  resizeToAvoidBottomInset: false, // set it to false
  ... 
)
Posted by: Guest on April-24-2021

Code answers related to "flutter bottom sheet with input"

Code answers related to "Dart"

Browse Popular Code Answers by Language