SingleChildScrollView

SingleChildScrollView can help you to do scroll

You need to declare it and put in widgets that will be scrolled.

SingleChildScrollView(
child:
//widgets
  );

If there is a space problem, you will need to add an expanded before the singlescrollview

Expanded(
        child: SingleChildScrollView(//code)
)

Last updated