Flutter: ListView not scrollable, not bouncing

前端 未结 6 2317
醉梦人生
醉梦人生 2021-02-12 21:49

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         


        
6条回答
  •  萌比男神i
    2021-02-12 22:03

    Just add AlwaysScrollableScrollPhysics

    ListView(
            physics: const AlwaysScrollableScrollPhysics(),
            children :  [...]
    }
    

提交回复
热议问题