no message
|
After Width: | Height: | Size: 538 B |
|
After Width: | Height: | Size: 445 B |
|
After Width: | Height: | Size: 630 B |
|
After Width: | Height: | Size: 605 B |
|
After Width: | Height: | Size: 634 B |
|
After Width: | Height: | Size: 573 B |
|
After Width: | Height: | Size: 782 B |
|
After Width: | Height: | Size: 758 B |
|
After Width: | Height: | Size: 887 B |
|
After Width: | Height: | Size: 754 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 961 B |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 415 B |
|
After Width: | Height: | Size: 373 B |
|
After Width: | Height: | Size: 454 B |
|
After Width: | Height: | Size: 425 B |
|
|
@ -7,6 +7,7 @@ import 'package:wgshare/common/mixins/request_tool_mixin.dart';
|
|||
import 'package:wgshare/common/models/user_info_detail.dart';
|
||||
import 'package:wgshare/common/store/user_store.dart';
|
||||
import 'package:wgshare/pages/homePage/home_logic.dart';
|
||||
import 'package:wgshare/pages/minePage/mine_page.dart';
|
||||
import 'package:wgshare/utils/storage.dart';
|
||||
import 'package:wgshare/utils/toast_utils.dart';
|
||||
import 'package:wgshare/routes/app_routes.dart';
|
||||
|
|
@ -35,6 +36,7 @@ class _StartPageState extends State<StartPage> with RequestToolMixin {
|
|||
|
||||
_bodyList = [
|
||||
const HomePage(),
|
||||
const MinePage(),
|
||||
];
|
||||
|
||||
String? token = UserStore.to.token;
|
||||
|
|
@ -82,16 +84,17 @@ class _StartPageState extends State<StartPage> with RequestToolMixin {
|
|||
),
|
||||
bottomNavigationBar: Obx(() {
|
||||
return BottomNavigationBar(
|
||||
iconSize: 24.sp,
|
||||
items: <BottomNavigationBarItem>[
|
||||
BottomNavigationBarItem(
|
||||
label: '首页',
|
||||
icon: getItemIcon('assets/images/ic_home_normal.png'),
|
||||
activeIcon: getItemIcon('assets/images/ic_home_press.png'),
|
||||
icon: getItemIcon('assets/images/home_no_active_icon.png'),
|
||||
activeIcon: getItemIcon('assets/images/home_icon.png'),
|
||||
),
|
||||
BottomNavigationBarItem(
|
||||
label: '我的',
|
||||
icon: getItemIcon('assets/images/ic_mine_normal.png'),
|
||||
activeIcon: getItemIcon('assets/images/ic_mine_press.png'),
|
||||
icon: getItemIcon('assets/images/mine_no_active_icon.png'),
|
||||
activeIcon: getItemIcon('assets/images/mine_icon.png'),
|
||||
),
|
||||
],
|
||||
//设置显示的模式
|
||||
|
|
|
|||