I have a SingleChildScrollView widget inside a SafeArea that is not scrolling. I want to make all the screen scrollable, but it is not scrolling in no way. Here is the code:
Scaffold(
body: SafeArea(
child: SingleChildScrollView(
child: Column(
children: [
// some containers with text
CustomList(),
// some containers with text
CustomList(),
// some containers with text
],
),
),
),
),
bottomSheet: // container and button
),
The CustomList is a Column widget with inside some Rows widgets like this:
Column(
children:
[
// some rows like this, not only one
Row(
children: [
Container(
child: CustomItem(),
),
],
],
),
];
)
CustomItem is only a Text. Why my screen is not scrollable?