I have the following example (tested on an iPhone X, iOS 11):
import \'package:flutter/material.dart\'; void main() => runApp(new MyApp()); class MyApp exte
Just add AlwaysScrollableScrollPhysics
AlwaysScrollableScrollPhysics
ListView( physics: const AlwaysScrollableScrollPhysics(), children : [...] }