Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 18, 2018 21:41
Show Gist options
  • Save Rahiche/fe54477a5f19c979143daea8b90e2e85 to your computer and use it in GitHub Desktop.
Save Rahiche/fe54477a5f19c979143daea8b90e2e85 to your computer and use it in GitHub Desktop.
final controller = ScrollController();
@override
void initState() {
super.initState();
controller.addListener(onScroll);
}
onScroll() {
setState(() {
cWidth = controller.offset * screenWidth / (itemHeight * itemsCount);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment