Skip to content

Instantly share code, notes, and snippets.

@felixblaschke
Created April 11, 2019 15:49
Show Gist options
  • Save felixblaschke/9d8d311f1e754dc5cca893b35960785e to your computer and use it in GitHub Desktop.
Save felixblaschke/9d8d311f1e754dc5cca893b35960785e to your computer and use it in GitHub Desktop.
Fade In Demo 1
class FadeInUi extends StatelessWidget {
@override
Widget build(BuildContext context) {
return SingleChildScrollView(
child: Container(
padding: EdgeInsets.all(20.0),
child: Column(
children: <Widget>[
HeaderPlaceholder(),
WhitespaceSeparator(),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
CirclePlaceholder(),
CirclePlaceholder(),
CirclePlaceholder()
],
),
WhitespaceSeparator(),
CardPlaceholder(),
CardPlaceholder(),
CardPlaceholder(),
CardPlaceholder()
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment