Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created April 25, 2019 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/a28c910a19807d42f8ba542ce02be7f6 to your computer and use it in GitHub Desktop.
Save MarcinusX/a28c910a19807d42f8ba542ce02be7f6 to your computer and use it in GitHub Desktop.
class SlidingCardsView extends StatefulWidget {
@override
_SlidingCardsViewState createState() => _SlidingCardsViewState();
}
class _SlidingCardsViewState extends State<SlidingCardsView> {
@override
Widget build(BuildContext context) {
return Placeholder(
fallbackWidth: double.infinity,
fallbackHeight: MediaQuery.of(context).size.height * 0.55,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment