|
@@ -28,38 +28,45 @@ class HomePage extends BasePage<HomePageController> {
|
|
|
return Stack(
|
|
return Stack(
|
|
|
children: [
|
|
children: [
|
|
|
buildBgBox(),
|
|
buildBgBox(),
|
|
|
- SafeArea(
|
|
|
|
|
- bottom: false,
|
|
|
|
|
- child: Column(
|
|
|
|
|
- children: [
|
|
|
|
|
- Container(
|
|
|
|
|
- width: 1.sw,
|
|
|
|
|
- padding: const EdgeInsets.all(12).w,
|
|
|
|
|
- child: buildOperationBar(),
|
|
|
|
|
- ),
|
|
|
|
|
- Expanded(
|
|
|
|
|
- child: DefaultTabController(
|
|
|
|
|
- length: controller.tabList.length,
|
|
|
|
|
- child: NestedScrollView(
|
|
|
|
|
- headerSliverBuilder:
|
|
|
|
|
- (BuildContext context, bool innerBoxIsScrolled) {
|
|
|
|
|
- return [
|
|
|
|
|
- SliverToBoxAdapter(child: _buildHeaderView()),
|
|
|
|
|
- SliverPersistentHeader(
|
|
|
|
|
- floating: true,
|
|
|
|
|
- pinned: true,
|
|
|
|
|
- delegate: CommonSliverHeaderDelegate(
|
|
|
|
|
- backgroundColor: '#F6F5F8'.color,
|
|
|
|
|
- child: PreferredSize(
|
|
|
|
|
- preferredSize:
|
|
|
|
|
- const Size(double.infinity, 52),
|
|
|
|
|
- child: _buildTabBar()))),
|
|
|
|
|
- ];
|
|
|
|
|
- },
|
|
|
|
|
- body: _buildHomeTabView())),
|
|
|
|
|
- ),
|
|
|
|
|
- ],
|
|
|
|
|
- ),
|
|
|
|
|
|
|
+ Column(
|
|
|
|
|
+ children: [
|
|
|
|
|
+ Obx(() {
|
|
|
|
|
+ return Container(
|
|
|
|
|
+ color: '#EBF0FE'.color.withOpacity(controller.topBgOpacity),
|
|
|
|
|
+ child: Column(
|
|
|
|
|
+ children: [
|
|
|
|
|
+ SizedBox(height: MediaQuery.of(context).padding.top),
|
|
|
|
|
+ Container(
|
|
|
|
|
+ padding: const EdgeInsets.all(12).w,
|
|
|
|
|
+ child: buildOperationBar(),
|
|
|
|
|
+ )
|
|
|
|
|
+ ],
|
|
|
|
|
+ ),
|
|
|
|
|
+ );
|
|
|
|
|
+ }),
|
|
|
|
|
+ Expanded(
|
|
|
|
|
+ child: DefaultTabController(
|
|
|
|
|
+ length: controller.tabList.length,
|
|
|
|
|
+ child: NestedScrollView(
|
|
|
|
|
+ controller: controller.scrollController,
|
|
|
|
|
+ headerSliverBuilder:
|
|
|
|
|
+ (BuildContext context, bool innerBoxIsScrolled) {
|
|
|
|
|
+ return [
|
|
|
|
|
+ SliverToBoxAdapter(child: _buildHeaderView()),
|
|
|
|
|
+ SliverPersistentHeader(
|
|
|
|
|
+ floating: true,
|
|
|
|
|
+ pinned: true,
|
|
|
|
|
+ delegate: CommonSliverHeaderDelegate(
|
|
|
|
|
+ backgroundColor: '#F6F5F8'.color,
|
|
|
|
|
+ child: PreferredSize(
|
|
|
|
|
+ preferredSize:
|
|
|
|
|
+ const Size(double.infinity, 52),
|
|
|
|
|
+ child: _buildTabBar()))),
|
|
|
|
|
+ ];
|
|
|
|
|
+ },
|
|
|
|
|
+ body: _buildHomeTabView())),
|
|
|
|
|
+ ),
|
|
|
|
|
+ ],
|
|
|
),
|
|
),
|
|
|
],
|
|
],
|
|
|
);
|
|
);
|
|
@@ -107,78 +114,6 @@ class HomePage extends BasePage<HomePageController> {
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- // SliverToBoxAdapter buildSeeMoreView() {
|
|
|
|
|
- // return SliverToBoxAdapter(
|
|
|
|
|
- // child: Obx(() {
|
|
|
|
|
- // return Visibility(
|
|
|
|
|
- // visible: controller.agendaList.isNotEmpty,
|
|
|
|
|
- // child: Container(
|
|
|
|
|
- // alignment: Alignment.center,
|
|
|
|
|
- // padding: EdgeInsets.only(
|
|
|
|
|
- // top: 12.w, bottom: 56.w + Constants.bottomBarHeight),
|
|
|
|
|
- // child: RichText(
|
|
|
|
|
- // text: TextSpan(
|
|
|
|
|
- // text: StringName.homeTalkTodo1.tr,
|
|
|
|
|
- // style: TextStyle(
|
|
|
|
|
- // color: ColorName.secondaryTextColor, fontSize: 12.sp),
|
|
|
|
|
- // children: <TextSpan>[
|
|
|
|
|
- // TextSpan(
|
|
|
|
|
- // text: StringName.homeTalkTodo2.tr,
|
|
|
|
|
- // style: TextStyle(
|
|
|
|
|
- // color: ColorName.colorPrimary, fontSize: 12.sp),
|
|
|
|
|
- // recognizer: TapGestureRecognizer()
|
|
|
|
|
- // ..onTap = () {
|
|
|
|
|
- // controller.onGoAgendaList();
|
|
|
|
|
- // }),
|
|
|
|
|
- // ],
|
|
|
|
|
- // ),
|
|
|
|
|
- // ),
|
|
|
|
|
- // ),
|
|
|
|
|
- // );
|
|
|
|
|
- // }),
|
|
|
|
|
- // );
|
|
|
|
|
- // }
|
|
|
|
|
-
|
|
|
|
|
- // SliverToBoxAdapter buildTalkTodoTitle() {
|
|
|
|
|
- // return SliverToBoxAdapter(
|
|
|
|
|
- // child: Container(
|
|
|
|
|
- // decoration: BoxDecoration(
|
|
|
|
|
- // gradient: LinearGradient(
|
|
|
|
|
- // begin: Alignment.topCenter,
|
|
|
|
|
- // end: Alignment.bottomCenter,
|
|
|
|
|
- // colors: ["#FCFBFC".toColor(), "#F6F5F8".toColor()],
|
|
|
|
|
- // ),
|
|
|
|
|
- // ),
|
|
|
|
|
- // child: Column(
|
|
|
|
|
- // children: [
|
|
|
|
|
- // SizedBox(height: 12.w),
|
|
|
|
|
- // buildTitle(StringName.talkSummaryTodoTitle.tr, () {
|
|
|
|
|
- // controller.onGoAgendaList();
|
|
|
|
|
- // }),
|
|
|
|
|
- // SizedBox(height: 12.w)
|
|
|
|
|
- // ],
|
|
|
|
|
- // ),
|
|
|
|
|
- // ));
|
|
|
|
|
- // }
|
|
|
|
|
- //
|
|
|
|
|
- // SliverToBoxAdapter buildTalkRecordTitle() {
|
|
|
|
|
- // return SliverToBoxAdapter(
|
|
|
|
|
- // child: Container(
|
|
|
|
|
- // decoration: BoxDecoration(
|
|
|
|
|
- // gradient: LinearGradient(
|
|
|
|
|
- // begin: Alignment.topCenter,
|
|
|
|
|
- // end: Alignment.bottomCenter,
|
|
|
|
|
- // colors: [ColorName.white, "#FEFEFE".toColor()],
|
|
|
|
|
- // ),
|
|
|
|
|
- // ),
|
|
|
|
|
- // padding: const EdgeInsets.symmetric(vertical: 12).w,
|
|
|
|
|
- // child: buildTitle(StringName.homeTalkRecord.tr, () {
|
|
|
|
|
- // controller.goTalkRecordPage();
|
|
|
|
|
- // }),
|
|
|
|
|
- // ),
|
|
|
|
|
- // );
|
|
|
|
|
- // }
|
|
|
|
|
-
|
|
|
|
|
Row buildOperationBar() {
|
|
Row buildOperationBar() {
|
|
|
return Row(children: [buildGoLogin(), const Spacer(), buildGoStore()]);
|
|
return Row(children: [buildGoLogin(), const Spacer(), buildGoStore()]);
|
|
|
}
|
|
}
|
|
@@ -204,8 +139,6 @@ class HomePage extends BasePage<HomePageController> {
|
|
|
fontWeight: FontWeight.bold)),
|
|
fontWeight: FontWeight.bold)),
|
|
|
),
|
|
),
|
|
|
onTap: () {
|
|
onTap: () {
|
|
|
- // accountRepository.logout();
|
|
|
|
|
- // ToastUtil.showToast('GoStore');
|
|
|
|
|
StorePage.start(fromType: StoreFromType.home);
|
|
StorePage.start(fromType: StoreFromType.home);
|
|
|
});
|
|
});
|
|
|
}
|
|
}
|
|
@@ -263,290 +196,8 @@ class HomePage extends BasePage<HomePageController> {
|
|
|
),
|
|
),
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-// Widget buildTalkRecord() {
|
|
|
|
|
-// return SizedBox(
|
|
|
|
|
-// width: 1.sw,
|
|
|
|
|
-// child: CustomScrollView(
|
|
|
|
|
-// scrollDirection: Axis.horizontal,
|
|
|
|
|
-// slivers: [
|
|
|
|
|
-// SliverToBoxAdapter(child: SizedBox(width: 12.w)),
|
|
|
|
|
-// Obx(() {
|
|
|
|
|
-// return SliverList.builder(
|
|
|
|
|
-// itemBuilder: _builderTalkItem,
|
|
|
|
|
-// itemCount: controller.talkList.length >= 10
|
|
|
|
|
-// ? 10
|
|
|
|
|
-// : controller.talkList.length);
|
|
|
|
|
-// }),
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// );
|
|
|
|
|
-// }
|
|
|
|
|
-//
|
|
|
|
|
-// Widget _builderTalkItem(BuildContext context, int index) {
|
|
|
|
|
-// return Obx(() {
|
|
|
|
|
-// TalkBean? item = controller.talkList[index];
|
|
|
|
|
-// return _buildTalkView(item, onLongPressStart: (details) {
|
|
|
|
|
-// if (!accountRepository.isLogin.value) {
|
|
|
|
|
-// return;
|
|
|
|
|
-// }
|
|
|
|
|
-// showTalkPopup(details.globalPosition, Alignment.bottomRight,
|
|
|
|
|
-// onRename: () {
|
|
|
|
|
-// showRenameTalkDialog(item);
|
|
|
|
|
-// }, onDelete: () {
|
|
|
|
|
-// showDeleteTalkDialog(item);
|
|
|
|
|
-// });
|
|
|
|
|
-// }, onItemClick: () {
|
|
|
|
|
-// controller.onTalkItemClick(item);
|
|
|
|
|
-// });
|
|
|
|
|
-// });
|
|
|
|
|
-// }
|
|
|
|
|
-
|
|
|
|
|
-// Widget _builderAgendaItem(BuildContext context, int index) {
|
|
|
|
|
-// return Obx(() {
|
|
|
|
|
-// Agenda item = controller.agendaList[index];
|
|
|
|
|
-// return GestureDetector(
|
|
|
|
|
-// onTap: () {
|
|
|
|
|
-// controller.onAgendaItemClick(item);
|
|
|
|
|
-// },
|
|
|
|
|
-// child: taskItemView(
|
|
|
|
|
-// item,
|
|
|
|
|
-// onThinkingClick: () {
|
|
|
|
|
-// ChatPage.startByTalkId(
|
|
|
|
|
-// item.isExample == true
|
|
|
|
|
-// ? ChatFromType.fromTalkExample
|
|
|
|
|
-// : ChatFromType.fromAnalysisBtn,
|
|
|
|
|
-// item.talkId,
|
|
|
|
|
-// agenda: item);
|
|
|
|
|
-// },
|
|
|
|
|
-// onCheckClick: () {
|
|
|
|
|
-// controller.agendaComplete(item);
|
|
|
|
|
-// },
|
|
|
|
|
-// ),
|
|
|
|
|
-// );
|
|
|
|
|
-// });
|
|
|
|
|
-// }
|
|
|
|
|
-
|
|
|
|
|
-// SliverToBoxAdapter buildGoRecordView() {
|
|
|
|
|
-// return SliverToBoxAdapter(
|
|
|
|
|
-// child: GestureDetector(
|
|
|
|
|
-// onTap: () => Get.toNamed(RoutePath.record),
|
|
|
|
|
-// child: Container(
|
|
|
|
|
-// margin: EdgeInsets.only(right: 8.w),
|
|
|
|
|
-// decoration: BoxDecoration(
|
|
|
|
|
-// color: Colors.white,
|
|
|
|
|
-// border: Border.all(color: '#EBEBFF'.toColor(), width: 1),
|
|
|
|
|
-// borderRadius: BorderRadius.circular(8.0),
|
|
|
|
|
-// ),
|
|
|
|
|
-// child: SizedBox(
|
|
|
|
|
-// width: 100.w,
|
|
|
|
|
-// height: double.infinity,
|
|
|
|
|
-// child: Stack(
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Positioned(
|
|
|
|
|
-// right: 0,
|
|
|
|
|
-// bottom: 0,
|
|
|
|
|
-// child: SizedBox(
|
|
|
|
|
-// width: 48.w,
|
|
|
|
|
-// child: Assets.images.bgHomeQuickAudio.image(),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// Positioned.fill(
|
|
|
|
|
-// child: Align(
|
|
|
|
|
-// alignment: Alignment.center,
|
|
|
|
|
-// child: Column(
|
|
|
|
|
-// children: [
|
|
|
|
|
-// SizedBox(height: 20.h),
|
|
|
|
|
-// SizedBox(
|
|
|
|
|
-// width: 32.w,
|
|
|
|
|
-// height: 32.w,
|
|
|
|
|
-// child: Assets.images.iconAddTalk.image()),
|
|
|
|
|
-// SizedBox(height: 6.h),
|
|
|
|
|
-// Text(StringName.homeTalkAudio.tr,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 14.sp,
|
|
|
|
|
-// color: ColorName.colorPrimary,
|
|
|
|
|
-// fontWeight: FontWeight.bold)),
|
|
|
|
|
-// Builder(builder: (context) {
|
|
|
|
|
-// controller.todoTargetContext = context;
|
|
|
|
|
-// return Text(StringName.homeTalkQuickAudio.tr,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 10.sp,
|
|
|
|
|
-// color: ColorName.secondaryTextColor));
|
|
|
|
|
-// })
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// )),
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ));
|
|
|
|
|
-// }
|
|
|
|
|
-
|
|
|
|
|
-// Widget _buildTalkView(TalkBean item,
|
|
|
|
|
-// {VoidCallback? onItemClick,
|
|
|
|
|
-// GestureLongPressStartCallback? onLongPressStart}) {
|
|
|
|
|
-// return GestureDetector(
|
|
|
|
|
-// onTap: onItemClick,
|
|
|
|
|
-// onLongPressStart: onLongPressStart,
|
|
|
|
|
-// child: Container(
|
|
|
|
|
-// width: 258.w,
|
|
|
|
|
-// margin: EdgeInsets.only(right: 8.w),
|
|
|
|
|
-// decoration: BoxDecoration(
|
|
|
|
|
-// color: Colors.white,
|
|
|
|
|
-// border: Border.all(color: '#F0F0F0'.toColor(), width: 2),
|
|
|
|
|
-// borderRadius: const BorderRadius.only(
|
|
|
|
|
-// topLeft: Radius.circular(12),
|
|
|
|
|
-// topRight: Radius.circular(24),
|
|
|
|
|
-// bottomRight: Radius.circular(12),
|
|
|
|
|
-// bottomLeft: Radius.circular(12)),
|
|
|
|
|
-// ),
|
|
|
|
|
-// padding: EdgeInsets.only(left: 10.w, right: 16.w),
|
|
|
|
|
-// child: Row(
|
|
|
|
|
-// crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Padding(
|
|
|
|
|
-// padding: const EdgeInsets.only(top: 14).h,
|
|
|
|
|
-// child: Stack(
|
|
|
|
|
-// children: [
|
|
|
|
|
-// SizedBox(
|
|
|
|
|
-// width: 35.w,
|
|
|
|
|
-// height: 40.w,
|
|
|
|
|
-// child: Assets.images.iconFilesFile.image()),
|
|
|
|
|
-// Visibility(
|
|
|
|
|
-// visible: item.isExample.isTrue,
|
|
|
|
|
-// child: Container(
|
|
|
|
|
-// margin: const EdgeInsets.only(top: 32).w,
|
|
|
|
|
-// decoration: BoxDecoration(
|
|
|
|
|
-// color: "#B2BAC4".toColor(),
|
|
|
|
|
-// borderRadius: BorderRadius.circular(4)),
|
|
|
|
|
-// padding: const EdgeInsets.symmetric(
|
|
|
|
|
-// horizontal: 5.5, vertical: 2)
|
|
|
|
|
-// .w,
|
|
|
|
|
-// child: Text(StringName.homeTalkExample.tr,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// height: 1,
|
|
|
|
|
-// fontSize: 12.sp,
|
|
|
|
|
-// color: ColorName.white)),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// SizedBox(width: 8.w),
|
|
|
|
|
-// Expanded(
|
|
|
|
|
-// child: Column(
|
|
|
|
|
-// mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
|
-// crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Text(item.title.value.orEmpty,
|
|
|
|
|
-// maxLines: 1,
|
|
|
|
|
-// overflow: TextOverflow.ellipsis,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 15.sp,
|
|
|
|
|
-// color: ColorName.primaryTextColor,
|
|
|
|
|
-// fontWeight: FontWeight.bold)),
|
|
|
|
|
-// SizedBox(height: 5.h),
|
|
|
|
|
-// Text(
|
|
|
|
|
-// item.summary.value.orEmpty,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 12.sp, color: ColorName.secondaryTextColor),
|
|
|
|
|
-// overflow: TextOverflow.ellipsis,
|
|
|
|
|
-// maxLines: 2,
|
|
|
|
|
-// ),
|
|
|
|
|
-// SizedBox(height: 8.h),
|
|
|
|
|
-// Row(
|
|
|
|
|
-// crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Text(item.duration.toFormattedDuration(),
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 12.sp,
|
|
|
|
|
-// color: ColorName.tertiaryTextColor)),
|
|
|
|
|
-// SizedBox(width: 6.w),
|
|
|
|
|
-// Container(
|
|
|
|
|
-// width: 1,
|
|
|
|
|
-// height: 9,
|
|
|
|
|
-// color: ColorName.tertiaryTextColor),
|
|
|
|
|
-// SizedBox(width: 6.w),
|
|
|
|
|
-// Text(item.createTime.orEmpty,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 12.sp,
|
|
|
|
|
-// color: ColorName.tertiaryTextColor))
|
|
|
|
|
-// ],
|
|
|
|
|
-// )
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// )
|
|
|
|
|
-// ],
|
|
|
|
|
-// )),
|
|
|
|
|
-// );
|
|
|
|
|
-// }
|
|
|
|
|
-
|
|
|
|
|
-// Widget buildTitle(String titleName, VoidCallback? onTap) {
|
|
|
|
|
-// return Padding(
|
|
|
|
|
-// padding: const EdgeInsets.symmetric(horizontal: 12).w,
|
|
|
|
|
-// child: Row(
|
|
|
|
|
-// crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Text(titleName,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontWeight: FontWeight.bold,
|
|
|
|
|
-// fontSize: 17.sp,
|
|
|
|
|
-// color: ColorName.primaryTextColor)),
|
|
|
|
|
-// const Spacer(),
|
|
|
|
|
-// Visibility(
|
|
|
|
|
-// visible: onTap == null ? false : true,
|
|
|
|
|
-// child: GestureDetector(
|
|
|
|
|
-// onTap: onTap,
|
|
|
|
|
-// child: Padding(
|
|
|
|
|
-// padding: const EdgeInsets.symmetric(vertical: 6).w,
|
|
|
|
|
-// child: Row(
|
|
|
|
|
-// crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
|
-// children: [
|
|
|
|
|
-// Text(
|
|
|
|
|
-// StringName.homeTalkSeeAll.tr,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// fontSize: 13.sp, color: ColorName.tertiaryTextColor),
|
|
|
|
|
-// ),
|
|
|
|
|
-// Container(
|
|
|
|
|
-// margin: const EdgeInsets.only(bottom: 1),
|
|
|
|
|
-// width: 16.w,
|
|
|
|
|
-// height: 16.w,
|
|
|
|
|
-// child: Assets.images.iconHomeTalkArrow.image()),
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// )
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// );
|
|
|
|
|
-// }
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-// Widget buildAgendaEmptyView(double top, {bool isVisible = true}) {
|
|
|
|
|
-// return Visibility(
|
|
|
|
|
-// visible: isVisible,
|
|
|
|
|
-// child: Container(
|
|
|
|
|
-// width: double.infinity,
|
|
|
|
|
-// padding: EdgeInsets.symmetric(vertical: top),
|
|
|
|
|
-// child: Column(
|
|
|
|
|
-// children: [
|
|
|
|
|
-// SizedBox(
|
|
|
|
|
-// width: 100.w,
|
|
|
|
|
-// height: 100.w,
|
|
|
|
|
-// child: Assets.images.iconNoTask.image()),
|
|
|
|
|
-// SizedBox(height: 4.h),
|
|
|
|
|
-// Text(StringName.agendaNoData.tr,
|
|
|
|
|
-// style: TextStyle(
|
|
|
|
|
-// color: ColorName.secondaryTextColor, fontSize: 14.sp)),
|
|
|
|
|
-// ],
|
|
|
|
|
-// ),
|
|
|
|
|
-// ),
|
|
|
|
|
-// );
|
|
|
|
|
-// }
|
|
|
|
|
-
|
|
|
|
|
Widget getHomeHeadView(
|
|
Widget getHomeHeadView(
|
|
|
{GlobalKey? key,
|
|
{GlobalKey? key,
|
|
|
VoidCallback? recordClick,
|
|
VoidCallback? recordClick,
|
|
@@ -665,4 +316,4 @@ class CommonSliverHeaderDelegate extends SliverPersistentHeaderDelegate {
|
|
|
bool shouldRebuild(covariant SliverPersistentHeaderDelegate oldDelegate) {
|
|
bool shouldRebuild(covariant SliverPersistentHeaderDelegate oldDelegate) {
|
|
|
return true;
|
|
return true;
|
|
|
}
|
|
}
|
|
|
-}
|
|
|
|
|
|
|
+}
|