How to have additional widgets along with MarkDown in Scaffold body in Flutter?

Given that Markdown returns a list we have to set shrinkWrap and physics.

SingleChildScrollView(
 child: Column(
   children: [
     Container(
       height: 100,
       color: Colors.red,
     ),
     Markdown(
       data: markDownTextHere,
       shrinkWrap: true,
       physics: const NeverScrollableScrollPhysics(),
     ),
   ],
 ),
);