更换会员中心图标

pull/1/head
张萌 3 years ago
parent 5cdd77e04a
commit 0f9cfd4cf4

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

@ -637,6 +637,7 @@ class $AssetsNewIconGen {
AssetGenImage get avatarPlaceholder =>
const AssetGenImage('assets/newIcon/avatar_placeholder.png');
AssetGenImage get hyhd => const AssetGenImage('assets/newIcon/hyhd.png');
AssetGenImage get icDaifuk =>
const AssetGenImage('assets/newIcon/ic_daifuk.png');
AssetGenImage get icDaishouh =>
@ -688,6 +689,11 @@ class $AssetsNewIconGen {
const AssetGenImage('assets/newIcon/img_wpcm.png');
AssetGenImage get imgZxgl =>
const AssetGenImage('assets/newIcon/img_zxgl.png');
AssetGenImage get jfjs => const AssetGenImage('assets/newIcon/jfjs.png');
AssetGenImage get sfbs => const AssetGenImage('assets/newIcon/sfbs.png');
AssetGenImage get srzf => const AssetGenImage('assets/newIcon/srzf.png');
AssetGenImage get xcyhm => const AssetGenImage('assets/newIcon/xcyhm.png');
AssetGenImage get zfyh => const AssetGenImage('assets/newIcon/zfyh.png');
}
class $AssetsStaticGen {

@ -1,15 +1,13 @@
import 'package:aku_new_community/gen/assets.gen.dart';
import 'package:aku_new_community/pages/personal/intergral/progress_paint.dart';
import 'package:aku_new_community/pages/personal/intergral/rule_explain_page.dart';
import 'package:aku_new_community/widget/bee_back_button.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:get/get.dart';
import 'package:velocity_x/velocity_x.dart';
import 'package:aku_new_community/gen/assets.gen.dart';
import 'package:aku_new_community/pages/personal/intergral/progress_paint.dart';
import 'package:aku_new_community/pages/personal/intergral/rule_explain_page.dart';
import 'package:aku_new_community/widget/bee_back_button.dart';
class integralCenterPage extends StatefulWidget {
const integralCenterPage({Key? key}) : super(key: key);
@ -42,12 +40,12 @@ class _integralCenterPageState extends State<integralCenterPage> {
crossAxisCount: 3,
physics: NeverScrollableScrollPhysics(),
children: [
gridCard(Assets.icons.identify.path, '身份标识', () {}),
gridCard(Assets.icons.identify.path, '积分加速', () {}),
gridCard(Assets.icons.identify.path, '支付优惠', () {}),
gridCard(Assets.icons.identify.path, '生日祝福', () {}),
gridCard(Assets.icons.identify.path, '会员活动', () {}),
gridCard(Assets.icons.identify.path, '炫彩用户名', () {}),
gridCard(Assets.newIcon.sfbs.path, '身份标识', () {}),
gridCard(Assets.newIcon.jfjs.path, '积分加速', () {}),
gridCard(Assets.newIcon.zfyh.path, '支付优惠', () {}),
gridCard(Assets.newIcon.srzf.path, '生日祝福', () {}),
gridCard(Assets.newIcon.hyhd.path, '会员活动', () {}),
gridCard(Assets.newIcon.xcyhm.path, '炫彩用户名', () {}),
],
),
);
@ -66,10 +64,9 @@ class _integralCenterPageState extends State<integralCenterPage> {
color: Color(0xFF303843),
width: double.infinity,
height: 850.h,
child: Column(
mainAxisSize: MainAxisSize.min,
child: ListView(
children: [
Spacer(),
180.w.heightBox,
Padding(
padding: EdgeInsets.only(left: 48.w),
child: Row(

@ -28,6 +28,7 @@ import 'package:aku_new_community/widget/others/user_tool.dart';
import 'package:bot_toast/bot_toast.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:get/get.dart';
import 'package:provider/provider.dart';
@ -84,8 +85,16 @@ class _CommunityPageState extends State<CommunityPage>
super.build(context);
final userProvider = Provider.of<UserProvider>(context);
final appProvider = Provider.of<AppProvider>(context);
return Scaffold(
appBar: AppBar(
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.dark,
child: Scaffold(
appBar: PreferredSize(
preferredSize: Size.fromHeight(88.w),
child: Container(
decoration: BoxDecoration(
gradient:
LinearGradient(colors: [Colors.white, Color(0xFFFFF9D1)])),
child: AppBar(
titleSpacing: 0,
title: Align(
alignment: Alignment.centerLeft,
@ -106,15 +115,15 @@ class _CommunityPageState extends State<CommunityPage>
indicatorPadding: EdgeInsets.only(bottom: 15.w),
indicator: const BoxDecoration(),
tabs: _tabs.map((e) => Tab(text: e)).toList(),
labelStyle:
TextStyle(fontSize: 36.sp, fontWeight: FontWeight.bold),
labelStyle: TextStyle(
fontSize: 36.sp, fontWeight: FontWeight.bold),
labelColor: Color(0xD9000000),
unselectedLabelStyle: TextStyle(fontSize: 32.sp),
unselectedLabelColor: Color(0x73000000),
isScrollable: true,
),
)),
backgroundColor: Colors.white,
backgroundColor: Colors.transparent,
actions: [
Padding(
padding: EdgeInsets.only(right: 32.w),
@ -140,6 +149,8 @@ class _CommunityPageState extends State<CommunityPage>
)
],
),
),
),
body: TabBarView(
children: [
EasyRefresh(
@ -185,6 +196,7 @@ class _CommunityPageState extends State<CommunityPage>
],
controller: _tabController,
),
),
);
}

Loading…
Cancel
Save