Answers for "scroll view in flutter"

3

scroll view in flutter

SingleChildScrollView(
child: Text("Scroll View Example")
)
Posted by: Guest on May-29-2021
4

make scaffold scrollable flutter

@override
 Widget build(BuildContext context) {
  return Scaffold(
    appBar: AppBar(
      title: Text('News'),
    ),
    body: SingleChildScrollView(  // <-- wrap this around
      child: Column(
        children: <Widget>[
        ],
      ),
    ));
  }
Posted by: Guest on September-09-2020

Code answers related to "scroll view in flutter"

Browse Popular Code Answers by Language