Reputation: 47
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
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