Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 19, 2018 21:14
Show Gist options
  • Save Rahiche/cd5a811c79c28692b16c66e50574844d to your computer and use it in GitHub Desktop.
Save Rahiche/cd5a811c79c28692b16c66e50574844d to your computer and use it in GitHub Desktop.
TabController controller;
@override
void initState() {
super.initState();
controller = TabController(length: 2, vsync: this);
controller.addListener(() {
setState(() {});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment