Created
December 4, 2021 03:43
-
-
Save ponnamkarthik/3cc62737764d03b2512a43d53951eb87 to your computer and use it in GitHub Desktop.
Vertical viewport was given unbounded height.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return Scaffold( | |
appBar: AppBar( | |
title: Text(widget.title), | |
), | |
body: SingleChildScrollView( | |
child: ListView( | |
shrinkWrap: true, | |
children: const [ | |
Text("hello user") | |
], | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment