I have ListView which contains - 1. Banner Image 2. Container with some Text 3. Container with Some more Text 4. Container consist of Stepper.
I\'m unable to scrol
If the stepper is contained within another scrollable, you can set stepper physics to ClampingScrollPhysics
Stepper(physics: ClampingScrollPhysics(), //remaing stepper code
in your case you are using listview which is scrollable, by setting stepper physics to ClampingScrollPhysics() the parent widget (listview) will have the controller of stepper scroll
Edit: as @asubanovsky stated in the comment, you can use NeverScrollableScrollPhysics() as well to be more precise for removing the scroll behavior of the current widget and let the parent widget handle it