barList.dart 1.3KB

1234567891011121314151617181920212223242526272829303132
  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter_screenutil/flutter_screenutil.dart';
  3. import 'bottomBar/item.dart';
  4. final BarList = <BarItem>[
  5. BarItem(
  6. label: '首页',
  7. page: '/',
  8. normal: Item (color: const Color(0xFF323232), fontSize: 15.sp, image: 'images/index/HomesOFFImgaes.png'),
  9. selected: Item (color: const Color(0xFFFF703B), fontSize: 15.sp, image: 'images/index/HomesNOImgaes.png'),
  10. ),
  11. BarItem(
  12. label: '订单',
  13. page: '/order',
  14. normal: Item (color: const Color(0xFF323232), fontSize: 15.sp, image: 'images/index/OrdersOFFImgaes.png'),
  15. selected: Item (color: const Color(0xFFFF703B), fontSize: 15.sp, image: 'images/index/OrdersNOImgaes.png'),
  16. ),
  17. BarItem(
  18. label: '资讯',
  19. page: '/infomation',
  20. normal: Item (color: const Color(0xFF323232), fontSize: 15.sp, image: 'images/index/newsOFFImages.png'),
  21. selected: Item (color: const Color(0xFFFF703B), fontSize: 15.sp, image: 'images/index/newsONImages.png'),
  22. ),
  23. BarItem(
  24. label: '我的',
  25. page: '/main',
  26. normal: Item (color: const Color(0xFF323232), fontSize: 15.sp, image: 'images/index/MineOFFImgaes.png'),
  27. selected: Item (color: const Color(0xFFFF703B), fontSize: 15.sp, image: 'images/index/MineNOImgaes.png'),
  28. ),
  29. ];