3

How can I disable scrolling when there is a widget with CupertinoNavBar and large title? For instance I have:

    @override
  Widget build(BuildContext context) {
    return CupertinoPageScaffold(
      child: NestedScrollView(
        headerSliverBuilder: (BuildContext context, bool innerBoxIsScrolled){
          return <Widget>[
            CupertinoSliverNavigationBar(
              largeTitle: Text('Settings'),
            )
          ];
        },
        body: Center(child: Text('Home Page'),),
      ),
    );
  }

if I add physics: NeverScrollableScrollPhysics(), it doesn't work

MobileMon
  • 8,341
  • 5
  • 56
  • 75

0 Answers0