79130318

Date: 2024-10-27 10:07:40
Score: 1
Natty:
Report link

in my case 'Align' helped :

 @override
  Widget build(BuildContext context) {
    return Align(
      alignment: Alignment.topCenter,
      child: SingleChildScrollView(
          child: const Column(
            children: [
              Text('Search box'),
            ],
          ),
        );
      }

taken from this post:

https://www.reddit.com/r/flutterhelp/comments/1abq8av/singlechildscrollview_centers_content_but_need_it/

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: ChrisG