Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. final List<DashboardItems> dashboardItems = [
  2. DashboardItems(menuItem: MenuItems.dashboard, title: Strings.drawerItemHome, icon: 'assets/icons/home.png', forActiveUser: false),
  3. DashboardItems(menuItem: MenuItems.healthProfile, title: Strings.drawerItemProfile, icon: 'assets/icons/cannabis.png', forActiveUser: true),
  4. ];
  5.  
  6. decoration: BoxDecoration(
  7. color:
  8. user != null && user.userActive == 1 ? Colors.white :
  9. user == null || (user != null && user.userActive == 0) || !item.forActiveUser ? Colors.white :
  10. Colors.grey,
  11. borderRadius: BorderRadius.all(Radius.circular(5.0)),
  12. boxShadow: [
  13. BoxShadow(
  14. blurRadius: 0.5,
  15. color: Colors.black,
  16. offset: Offset(0.0, 0.0),
  17. )
  18. ]),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement