Skip to content

Instantly share code, notes, and snippets.

@smokelaboratory
Created July 28, 2019 15:36
Show Gist options
  • Select an option

  • Save smokelaboratory/9e32f40f2cc9da4df7c3cf62e70e4083 to your computer and use it in GitHub Desktop.

Select an option

Save smokelaboratory/9e32f40f2cc9da4df7c3cf62e70e4083 to your computer and use it in GitHub Desktop.
Bottom Sheet animation
AnimatedBuilder(
animation: _animation,
builder: (context, _) {
return Transform(
transform: Matrix4.translationValues(
0.0, width * _animation.value, 0.0),
child: Container(
width: width,
child: GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {},
child: widget.child),
),
);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment