Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. _getMainBody() {
  2. if (_loading) {
  3. return new Center(
  4. child: new CircularProgressIndicator(),
  5. );
  6. } else {
  7. return new RefreshIndicator(
  8. child: _buildCryptoList(),
  9. onRefresh: getCryptoPrices,
  10. );
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement