no message

This commit is contained in:
1147192855@qq.com 2024-11-19 16:44:31 +08:00
parent 8dd5efe6b8
commit a73e41b953
21 changed files with 7 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 538 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 605 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 782 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 758 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 961 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 415 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 425 B

View File

@ -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'),
),
],
//