The code below represents a scrollable container. I would love to add/implement a scrollbar on one of the container's sides. I know this is possible with ListView/GridView but is it possible with SingleChildScrollView?
Thank you for the help!
Container(
padding: EdgeInsets.only(
bottom: 5, right: 15, left: 15, top: 5),
height: 100,
alignment: Alignment.center,
decoration: BoxDecoration(
color: Color.fromARGB(255, 250, 250, 250),
borderRadius: BorderRadius.circular(10),
border: Border.all(
width: 0, color: Colors.grey),
),
child: SingleChildScrollView(
child: Text('WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW',
style: TextStyle(color: Colors.black),
),
),
),