├── .gitignore ├── .metadata ├── README.md ├── doc └── images │ ├── 1581152212.gif │ └── 1581152222.gif ├── lib ├── main.dart ├── page1.dart ├── page2.dart ├── page3.dart └── shop │ ├── shop_scroll_controller.dart │ ├── shop_scroll_coordinator.dart │ └── shop_scroll_position.dart ├── pubspec.lock ├── pubspec.yaml └── test └── widget_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/.metadata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/1581152212.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/doc/images/1581152212.gif -------------------------------------------------------------------------------- /doc/images/1581152222.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/doc/images/1581152222.gif -------------------------------------------------------------------------------- /lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/main.dart -------------------------------------------------------------------------------- /lib/page1.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/page1.dart -------------------------------------------------------------------------------- /lib/page2.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/page2.dart -------------------------------------------------------------------------------- /lib/page3.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/page3.dart -------------------------------------------------------------------------------- /lib/shop/shop_scroll_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/shop/shop_scroll_controller.dart -------------------------------------------------------------------------------- /lib/shop/shop_scroll_coordinator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/shop/shop_scroll_coordinator.dart -------------------------------------------------------------------------------- /lib/shop/shop_scroll_position.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/lib/shop/shop_scroll_position.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyjaysong/flutter_meituan_shop/HEAD/test/widget_test.dart --------------------------------------------------------------------------------