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

3.9
10
N. Post 85 points

                                    Widget build(BuildContext context) =&gt;
Scaffold(
  body: Column(
    children: &lt;Widget&gt;[
      Container(
        height: 100.0,
        color: Colors.blue,
      ),
      Expanded(
        child: SingleChildScrollView(
          child: Container(
            color: Colors.red,
            padding: EdgeInsets.all(20.0),
            child: Column(
              children: &lt;Widget&gt;[
                Text('Red container should be scrollable'),
                Container(
                  width: double.infinity,
                  height: 700.0,
                  padding: EdgeInsets.all(10.0),
                  color: Colors.white.withOpacity(0.7),
                  child: Text('I will have a column here'),
                )
              ],
            ),
          ),
        ),
      ),
    ],
  ),
);

3.9 (10 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
singlechildscrollview not working with listview single child scrollview in column flutter SingleChildScrollView NOT WORK single child scrollview flutter container column inside a single child scoll view flutter single child scrollview flutter bild the entire child set single child scrollview direction flutter how to use singlechildscrollview in column flutter flutter column after singlechildscrollview column and rows inside singlechildscrollview flutter singlechildscrollview not scrolling in column what is single child scrollview in flutter single child scrollview flutter for row single child scrollview flutter jank problem single child scrollview flutter jank single child scroll view column flutter how to add single child scrollview in container flutter how to manage flutter_into in single child scrollview singlechild scrollview nested in flutter but only one scrool SingleChildScrollView inside Column not working ] flutter single child scroll view inside column flutter single child scrollview column adding single child scroll view inside column in flutter flutter single child scrollview example column singlechildscrollview container not working inside use of singlechildscrollview with Column in flutter single child scrollview flutter with specific height single child scrollview flutter physics all about single child scrollview flutter show scroll bar single child scrollview flutter singlechildscrollview with column flutter single child scrollview physics flutter listview inside single child scrollview flutter how to make single child scrollview inside column flutter single child scrollview flutter don work with column flutter single child scrollview web add scrollbar flutter flutter single child scroll view and columnn singlechildscrollview not working in column singlechildscrollview not working invcolumn flutter single child scroll view controller single child scrollview with stack in flutter one child scroll view flutter singlechildscrollview horizontal not working flutter inside single child scrol view column singlechildscrollview does not work single scroll child view flutter single scrollview column flutter apply single child scrollview on column flutter single child scrollview flutter horizontal single child scrollview flutter content start single child scrollview scrollbar in flutter flutter single child scroolview show scroll 2 single child scroll view flutter flutter scroll indcator in single child scrolable view why singlechildscrollview doesnt work single child scrollview with expanded flutter singlechild scroll view with expanded flutter single child scrollview outside column flutter single child scrollview for row flutter flutter singlechildscrollview inside a column flutter singlechildscrollview Column doesnt work single child scrollview horizontal flutter single child scroll in flutter flutter single child scroll view overflow how to put single child scrollview in column flutter flutter single child scrollview in stack flutter column not working in singlechildscrollview flutter singlechildscrollview on column not working flutter singlechildscrollview inside column single child scrollview in flutter singlechildscrollview container column not working single child scrollview home flutter single child scroll view home flutter single child scrollview not scrolling flutter flutter column single child scrollview singlechildscrollview doesn't work single child scrollview flutter with column flutter make single child scrollview scroll infinetely single child scrollview flutter not scrolling horizontal singlechildscrollview not working flutter single child scrollview expanded flutter wrap inside single child scroll view flutter wrap single child scroll view what is singlechildscrollview in flutter singlechildscrollview in expanded column flutter flutter single child scrollview SingleChildScrollView in listView flutter multiple scrollviews flutter singlechildscrollview vs listview singlechildscrollview column flutter how to make listviewbuilder in singlechildscroll view in flutter column in singe child scroll view flutter SingleChildScrollView add spacer can you have a singlechildscrollview inside of a column flutter listview vs singlechildscrollview scroll list view in container flutter flutter scrollable column how to increase height of single child scroll view single child scrollview not scrolling singlechildscrollview donest work for colum singlechildscrollview not working with column flutter singlechildscrollview height flutter singlechildscrollview with column column SingleChildScrollView SingleChildScrollView height SingleChildScrollView overflow container flutter singlechildscrollview expanded singlechildscrollview fill remaining flutter column in SingleChildScrollView flutter listview inside column inside single child scrollview flutter listview vs scrollview flutter + scroll on column inside column single childscrollview error scrollview in column flutter singlechildscrollview inside column flutter singlechildscrollview not working in flutter how to use singlechildscrollview in flutter hasSize error singlechildscrollview column singlechildscrollview not working SingleChildScrollView listview single child scrollview builder flutter singlechildscrollview list builder flutter flutter scrollview inside column singelchildescrollview in a column flutter SingleChildScrollView( flutter SingleChildScrollView is not working singlechildscrollview not working inside column flutter singlechildscrollview column flutter single child scrollview is not working scrolView in side cluomn flutter scrollview inside column flutter singlechildscrollview column inside flutter singlechildscrollview not scrolling singlechildscrollview not scrolling flutter how to add single child scrollview how to use a column inside singlechildscrollview how to use a column inside single child scroll view how to use single child scrollview in flutter flutter scroll view inside a column flutter singlechildscrollview why single child scrollview flutter not working column wrap in singlechildscrollview flutter column inside singlechildscrollview column inside singlechildscrollview flutter Column is not working inside of SinglechildScrollView single child scrollview flutter singlechildscrollview inside column singlechildscrollview SingleChildScrollView container singlechildscrollview in column flutter singlechildscrollview vs listview SingleChildScrollView flutter example flutter singlechildscrollview example single child scroll view flutter singlechildscrollview flutter single child scrollview inside column flutter
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source