|
|
@@ -18,38 +18,52 @@ class SummaryView extends BasePage<SummaryController> {
|
|
|
Widget buildBody(BuildContext context) {
|
|
|
return Stack(
|
|
|
children: [
|
|
|
+ //谈话未分析
|
|
|
+ // SizedBox(
|
|
|
+ // width: double.infinity,
|
|
|
+ // child: Column(
|
|
|
+ // children: [
|
|
|
+ // SizedBox(height: 119.h),
|
|
|
+ // SizedBox(
|
|
|
+ // width: 100.w,
|
|
|
+ // height: 100.w,
|
|
|
+ // child: Assets.images.iconTalkSummaryUnanalyzed.image()),
|
|
|
+ // SizedBox(height: 4.h),
|
|
|
+ // Text(StringName.talkUnAnalyzed.tr,
|
|
|
+ // style: TextStyle(
|
|
|
+ // fontSize: 15.sp, color: ColorName.primaryTextColor)),
|
|
|
+ // SizedBox(height: 2.h),
|
|
|
+ // Text(StringName.talkUnAnalyzedTips.tr,
|
|
|
+ // style: TextStyle(
|
|
|
+ // fontSize: 12.sp, color: ColorName.secondaryTextColor)),
|
|
|
+ // SizedBox(height: 24.h),
|
|
|
+ // Container(
|
|
|
+ // decoration: getPrimaryBtnDecoration(8),
|
|
|
+ // width: 240.w,
|
|
|
+ // height: 48.w,
|
|
|
+ // child: Center(
|
|
|
+ // child: Text(
|
|
|
+ // StringName.talkAnalyzedBtnTxt.tr,
|
|
|
+ // style: TextStyle(fontSize: 16.sp, color: ColorName.white),
|
|
|
+ // ),
|
|
|
+ // ),
|
|
|
+ // )
|
|
|
+ // ],
|
|
|
+ // ),
|
|
|
+ // ),
|
|
|
+
|
|
|
+ //谈话生成中
|
|
|
SizedBox(
|
|
|
width: double.infinity,
|
|
|
child: Column(
|
|
|
children: [
|
|
|
- SizedBox(height: 119.h),
|
|
|
- SizedBox(
|
|
|
- width: 100.w,
|
|
|
- height: 100.w,
|
|
|
- child: Assets.images.iconTalkSummaryUnanalyzed.image()),
|
|
|
- SizedBox(height: 4.h),
|
|
|
- Text(StringName.talkUnAnalyzed.tr,
|
|
|
- style: TextStyle(
|
|
|
- fontSize: 15.sp, color: ColorName.primaryTextColor)),
|
|
|
- SizedBox(height: 2.h),
|
|
|
- Text(StringName.talkUnAnalyzedTips.tr,
|
|
|
+ SizedBox(height: 12.h),
|
|
|
+ Text(StringName.talkAnalyzing.tr,
|
|
|
style: TextStyle(
|
|
|
- fontSize: 12.sp, color: ColorName.secondaryTextColor)),
|
|
|
- SizedBox(height: 24.h),
|
|
|
- Container(
|
|
|
- decoration: getPrimaryBtnDecoration(8),
|
|
|
- width: 240.w,
|
|
|
- height: 48.w,
|
|
|
- child: Center(
|
|
|
- child: Text(
|
|
|
- StringName.talkAnalyzedBtnTxt.tr,
|
|
|
- style: TextStyle(fontSize: 16.sp, color: ColorName.white),
|
|
|
- ),
|
|
|
- ),
|
|
|
- )
|
|
|
+ fontSize: 14.sp, color: ColorName.secondaryTextColor))
|
|
|
],
|
|
|
),
|
|
|
- ),
|
|
|
+ )
|
|
|
],
|
|
|
);
|
|
|
}
|