svraluca1
svraluca1

Reputation: 47

Make a column scrollable in flutter

How can i make a column with many other things in it scrollable

 Widget build(BuildContext context) {
    return Scaffold(
        body: Column(
      children: <Widget>[
        Expanded(
          flex: 10,
          child: Stack(
            children: <Widget>[..

Upvotes: 0

Views: 65

Answers (2)

enfinity
enfinity

Reputation: 169

If you want to have many other things scrollable you can look at slivers in flutter. I believe they are a good fit for this.

Upvotes: 0

Matthew Trent
Matthew Trent

Reputation: 3274

Wrap the Column in a SingleChildScrollView widget.

Upvotes: 2

Related Questions