Answers for "singlechildscrollview in column not working"

1

singlechildscrollview not working inside column

Simply wrap your "SingleChildScrollView" widget with "Expanded" widget and it will work...
:)

Widget build(BuildContext context) =>
Scaffold(
  body: Column(
    children: <Widget>[
      Container(...),
      // Here... Wrap your "SingleChildScrollView" with "Expanded"
      Expanded(
        child: SingleChildScrollView(
          child: Container(...),
        ),
      ),
    ],
  ),
);
Posted by: Guest on November-13-2020

Code answers related to "singlechildscrollview in column not working"

Browse Popular Code Answers by Language