|
@@ -303,6 +303,7 @@ class ExistReportCardWidget extends StatelessWidget {
|
|
|
return Column(
|
|
return Column(
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
children: [
|
|
children: [
|
|
|
|
|
+ // 互动好感度
|
|
|
_buildValueItem(
|
|
_buildValueItem(
|
|
|
iconProvider: Assets.images.iconEmojiLike.provider(),
|
|
iconProvider: Assets.images.iconEmojiLike.provider(),
|
|
|
title: StringName.intimacyInteraction,
|
|
title: StringName.intimacyInteraction,
|
|
@@ -312,6 +313,7 @@ class ExistReportCardWidget extends StatelessWidget {
|
|
|
progressColors: [ColorName.blueGradient1, ColorName.blueGradient2],
|
|
progressColors: [ColorName.blueGradient1, ColorName.blueGradient2],
|
|
|
),
|
|
),
|
|
|
SizedBox(height: 18.h),
|
|
SizedBox(height: 18.h),
|
|
|
|
|
+ // 话题好感度
|
|
|
_buildValueItem(
|
|
_buildValueItem(
|
|
|
iconProvider: Assets.images.iconEmojiChat.provider(),
|
|
iconProvider: Assets.images.iconEmojiChat.provider(),
|
|
|
title: StringName.intimacyTopic,
|
|
title: StringName.intimacyTopic,
|
|
@@ -319,6 +321,7 @@ class ExistReportCardWidget extends StatelessWidget {
|
|
|
progressColors: [ColorName.greenGradient1, ColorName.greenGradient2],
|
|
progressColors: [ColorName.greenGradient1, ColorName.greenGradient2],
|
|
|
),
|
|
),
|
|
|
SizedBox(height: 18.h),
|
|
SizedBox(height: 18.h),
|
|
|
|
|
+ // 情绪回应
|
|
|
_buildValueItem(
|
|
_buildValueItem(
|
|
|
iconProvider: Assets.images.iconEmojiLike.provider(),
|
|
iconProvider: Assets.images.iconEmojiLike.provider(),
|
|
|
title: StringName.intimacyRespond,
|
|
title: StringName.intimacyRespond,
|
|
@@ -329,6 +332,7 @@ class ExistReportCardWidget extends StatelessWidget {
|
|
|
],
|
|
],
|
|
|
),
|
|
),
|
|
|
SizedBox(height: 18.h),
|
|
SizedBox(height: 18.h),
|
|
|
|
|
+ // 亲密词占比
|
|
|
_buildValueItem(
|
|
_buildValueItem(
|
|
|
iconProvider: Assets.images.iconEmojiPercent.provider(),
|
|
iconProvider: Assets.images.iconEmojiPercent.provider(),
|
|
|
title: StringName.intimacyintimacyRatio,
|
|
title: StringName.intimacyintimacyRatio,
|
|
@@ -338,11 +342,12 @@ class ExistReportCardWidget extends StatelessWidget {
|
|
|
progressColors: [ColorName.pinkGradient1, ColorName.pinkGradient2],
|
|
progressColors: [ColorName.pinkGradient1, ColorName.pinkGradient2],
|
|
|
),
|
|
),
|
|
|
SizedBox(height: 18.h),
|
|
SizedBox(height: 18.h),
|
|
|
|
|
+ // 预测方向占比
|
|
|
_buildValueItem(
|
|
_buildValueItem(
|
|
|
iconProvider: Assets.images.iconEmojiLove.provider(),
|
|
iconProvider: Assets.images.iconEmojiLove.provider(),
|
|
|
title: analyzeResult.directionName ?? "",
|
|
title: analyzeResult.directionName ?? "",
|
|
|
value: _convertPercentValue2ProgressBar(
|
|
value: _convertPercentValue2ProgressBar(
|
|
|
- analyzeResult.direction ?? "",
|
|
|
|
|
|
|
+ analyzeResult.directionRatio ?? "",
|
|
|
),
|
|
),
|
|
|
progressColors: [
|
|
progressColors: [
|
|
|
ColorName.purpleGradient1,
|
|
ColorName.purpleGradient1,
|