skip to Main Content

How to make scrollable part of page in Flutter?

I can't make scrollable the part highlighted in red And this is my code: class Home extends StatelessWidget { const Home({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( body: Stack( children: [ _headerWidget(), _actionWidget(), _backgroundWidget(), _bottomBar()…

VIEW QUESTION

Flutter ; Vertical ListView inside a column(inside another column) causing an overflow

class Episodes extends StatefulWidget { const Episodes({super.key}); @override State<Episodes> createState() => _EpisodesState(); } class _EpisodesState extends State<Episodes> { final seasons = ['Season 1', 'Season 2', 'Season 3']; String? value; @override Widget build(BuildContext context) { Size size = MediaQuery.of(context).size; //EdgeInsets.only(left: size.width…

VIEW QUESTION
Back To Top
Search