You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
280 lines
8.2 KiB
280 lines
8.2 KiB
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:aku_new_community/base/base_style.dart';
|
|
import 'package:aku_new_community/constants/application_objects.dart';
|
|
import 'package:aku_new_community/provider/app_provider.dart';
|
|
import 'package:aku_new_community/utils/headers.dart';
|
|
import 'package:aku_new_community/utils/login_util.dart';
|
|
import 'package:aku_new_community/widget/bee_back_button.dart';
|
|
|
|
class AllApplicationPage extends StatefulWidget {
|
|
AllApplicationPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_AllApplicationPageState createState() => _AllApplicationPageState();
|
|
}
|
|
|
|
class _AllApplicationPageState extends State<AllApplicationPage> {
|
|
bool _editMode = false;
|
|
|
|
int _index = 0;
|
|
|
|
PageController _pageController = PageController();
|
|
|
|
_buildTile(
|
|
AO object, {
|
|
bool editMode = false,
|
|
bool online = false,
|
|
}) {
|
|
return MaterialButton(
|
|
shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(8.w)),
|
|
padding: EdgeInsets.zero,
|
|
onPressed: editMode
|
|
? null
|
|
: () {
|
|
if (LoginUtil.isNotLogin) return;
|
|
// if (!LoginUtil.haveRealName(object.title)) return;
|
|
if (object.callback == null || !online) {
|
|
BotToast.showText(
|
|
text: '正在准备上线中,敬请期待', align: Alignment(0, 0.5));
|
|
} else {
|
|
object.callback!();
|
|
}
|
|
},
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: [
|
|
Image.asset(
|
|
object.path,
|
|
height: 75.w,
|
|
width: 75.w,
|
|
),
|
|
8.hb,
|
|
object.title.text.size(24.sp).make(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
_buildEditTile() {
|
|
return Row(
|
|
children: [
|
|
74.hb,
|
|
'我的应用'.text.make(),
|
|
Spacer(),
|
|
MaterialButton(
|
|
padding: EdgeInsets.zero,
|
|
elevation: 0,
|
|
height: 52.w,
|
|
minWidth: 90.w,
|
|
onPressed: () {
|
|
_editMode = !_editMode;
|
|
setState(() {});
|
|
},
|
|
color: kPrimaryColor,
|
|
child: (_editMode ? '完成' : '编辑').text.bold.size(28.sp).make(),
|
|
),
|
|
],
|
|
).pSymmetric(h: 32.w).material(color: Colors.white);
|
|
}
|
|
|
|
_buildMyApp() {
|
|
final appProvider = Provider.of<AppProvider>(context);
|
|
return GridView.builder(
|
|
padding: EdgeInsets.symmetric(horizontal: 32.w),
|
|
shrinkWrap: true,
|
|
physics: NeverScrollableScrollPhysics(),
|
|
gridDelegate:
|
|
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 4),
|
|
itemBuilder: (context, index) {
|
|
return Stack(
|
|
children: [
|
|
_buildTile(appProvider.myApplications[index], editMode: _editMode),
|
|
Positioned(
|
|
right: 0,
|
|
top: 0,
|
|
child: AnimatedOpacity(
|
|
duration: Duration(milliseconds: 300),
|
|
curve: Curves.easeInOutCubic,
|
|
opacity: _editMode ? 1 : 0,
|
|
child: CupertinoButton(
|
|
minSize: 60.w,
|
|
padding: EdgeInsets.zero,
|
|
onPressed: _editMode
|
|
? () {
|
|
appProvider.removeApplication(
|
|
appProvider.myApplications[index],
|
|
);
|
|
}
|
|
: null,
|
|
child: Image.asset(
|
|
R.ASSETS_ICONS_APP_REDUCE_PNG,
|
|
height: 24.w,
|
|
width: 24.w,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
itemCount: appProvider.myApplications.length,
|
|
).material(color: Colors.white);
|
|
}
|
|
|
|
_buildListTile(String title, int index) {
|
|
bool sameIndex = _index == index;
|
|
return Stack(
|
|
fit: StackFit.passthrough,
|
|
children: [
|
|
MaterialButton(
|
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
padding: EdgeInsets.zero,
|
|
color: sameIndex ? Colors.white : Color(0xFFEFEFEF),
|
|
elevation: 0,
|
|
height: 88.w,
|
|
onPressed: () {
|
|
setState(() {
|
|
_index = index;
|
|
});
|
|
_pageController.animateToPage(
|
|
index,
|
|
duration: Duration(milliseconds: 300),
|
|
curve: Curves.easeInOutCubic,
|
|
);
|
|
},
|
|
child: title.text.size(28.sp).make(),
|
|
),
|
|
Positioned(
|
|
left: 0,
|
|
top: 24.w,
|
|
bottom: 24.w,
|
|
child: AnimatedContainer(
|
|
duration: Duration(milliseconds: 300),
|
|
curve: Curves.easeInOutCubic,
|
|
width: sameIndex ? 3.w : 10.w,
|
|
color: sameIndex ? kPrimaryColor : kPrimaryColor.withOpacity(0),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildView(List<AO> objects, bool online) {
|
|
final appProvider = Provider.of<AppProvider>(context);
|
|
return GridView.builder(
|
|
gridDelegate:
|
|
SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3),
|
|
itemBuilder: (context, index) {
|
|
return Stack(
|
|
children: [
|
|
_buildTile(objects[index], editMode: _editMode, online: online),
|
|
Positioned(
|
|
right: 0,
|
|
top: 0,
|
|
child: AnimatedOpacity(
|
|
duration: Duration(milliseconds: 300),
|
|
curve: Curves.easeInOutCubic,
|
|
opacity: _editMode ? 1 : 0,
|
|
child: CupertinoButton(
|
|
minSize: 60.w,
|
|
padding: EdgeInsets.zero,
|
|
onPressed: _editMode
|
|
? () => appProvider.insertApplication(objects[index])
|
|
: null,
|
|
child: Image.asset(
|
|
R.ASSETS_ICONS_APP_ADD_PNG,
|
|
height: 24.w,
|
|
width: 24.w,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
itemCount: objects.length,
|
|
);
|
|
}
|
|
|
|
Widget _buildAppList() {
|
|
return Row(
|
|
children: [
|
|
SizedBox(
|
|
width: 172.w,
|
|
child: ListView(
|
|
padding: EdgeInsets.zero,
|
|
children: [
|
|
_buildListTile('智慧管家', 0),
|
|
_buildListTile('暂未上线', 1),
|
|
// _buildListTile('商城购物', 2),
|
|
],
|
|
),
|
|
).material(color: Color(0xFFEFEFEF)),
|
|
PageView(
|
|
physics: NeverScrollableScrollPhysics(),
|
|
scrollDirection: Axis.vertical,
|
|
controller: _pageController,
|
|
children: [
|
|
_buildView(smartManagerApp, true),
|
|
_buildView(recommendApp, false),
|
|
],
|
|
).expand(),
|
|
],
|
|
).material(color: Colors.white);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Color(0xFFF4F4F4),
|
|
appBar: AppBar(
|
|
backgroundColor: Colors.white,
|
|
elevation: 0,
|
|
leading: BeeBackButton(),
|
|
title: '全部应用'.text.make(),
|
|
// title: MaterialButton(
|
|
// materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
// height: 72.w,
|
|
// shape: StadiumBorder(),
|
|
// elevation: 0,
|
|
// minWidth: double.infinity,
|
|
// color: Color(0xFFF3F3F3),
|
|
// onPressed: () {
|
|
// Get.to(() => BeeSearch());
|
|
// },
|
|
// child: Row(
|
|
// children: [
|
|
// Icon(
|
|
// Icons.search,
|
|
// size: 32.w,
|
|
// color: Color(0xFF666666),
|
|
// ),
|
|
// 10.wb,
|
|
// '搜索应用'.text.size(28.sp).color(ktextSubColor).make().expand(),
|
|
// ],
|
|
// ),
|
|
// ),
|
|
),
|
|
body: Column(
|
|
children: [
|
|
//暂时删除(以后可能会加回来
|
|
// _buildEditTile(),
|
|
// Divider(
|
|
// indent: 32.w,
|
|
// endIndent: 32.w,
|
|
// height: 1.w,
|
|
// ).material(color: Colors.white),
|
|
// _buildMyApp(),
|
|
// 32.hb,
|
|
_buildAppList().expand(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|