Answers for "flutter listview margin top"

2

flutter container margin

@override
Widget build(BuildContext context) {
  return Scaffold(
    backgroundColor: Colors.white,
    body: Container(
      margin: const EdgeInsets.only(left: 20.0, right: 20.0),
      child: Container(),
    ),
  );
}
Posted by: Guest on September-13-2020
-1

flutter listview top padding

you should wrap the ListView with a MediaQuery.removePadding widget (with removeTop: true).
Posted by: Guest on June-04-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language