flutter listview vs scrollview code example

Example 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(...),
        ),
      ),
    ],
  ),
);

Example 2: listview inside column flutter

new Column(
  children: <Widget>[
    new Expanded(
      child: horizontalList,
    )
  ],
);

Tags:

Misc Example