Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. child: activeOrders == null
  2. ? Container()
  3. : activeOrders.isEmpty
  4. ? EmptyScreenWidget(
  5. title: AppLocalizations.of(
  6. context, WordKeys.noActiveOrdersTitle),
  7. body: AppLocalizations.of(
  8. context, WordKeys.noActiveOrdersBody),
  9. imagePath: 'assets/icons/no_orders.png',
  10. imageHeight: 100.0,
  11. imageWidth: 100.0,
  12. )
  13. : RefreshIndicator(
  14. color: colors.accent,
  15. onRefresh: _refresh,
  16. child: ListView(
  17. controller: _scrollController,
  18. padding: const EdgeInsets.only(bottom: 28, top: 16),
  19. children: activeOrders
  20. .map((data) => _buildOrderCard(data))
  21. .toList()),
  22. ),
  23. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement