文案
This commit is contained in:
@@ -4,10 +4,10 @@ class TipBox extends StatelessWidget {
|
|||||||
TipBox({super.key});
|
TipBox({super.key});
|
||||||
|
|
||||||
final List<String> tips = [
|
final List<String> tips = [
|
||||||
"Ensure good lighting",
|
"Use good lighting",
|
||||||
"Keep the camera steady",
|
"Hold the camera steady",
|
||||||
"Fill the frame with the skin area",
|
"Make sure the skin fills the frame",
|
||||||
"Avoid shadows and glare",
|
"Avoid shadows or glare",
|
||||||
];
|
];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ class CardBox extends StatelessWidget {
|
|||||||
Container(
|
Container(
|
||||||
margin: const EdgeInsets.only(bottom: 10),
|
margin: const EdgeInsets.only(bottom: 10),
|
||||||
child: Text(
|
child: Text(
|
||||||
"Detected Signs:",
|
"Analysis:",
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
style: Theme.of(context).textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ class _SuccessBoxState extends State<SuccessBox> {
|
|||||||
color: Theme.of(context).colorScheme.success,
|
color: Theme.of(context).colorScheme.success,
|
||||||
icon: RemixIcons.check_fill,
|
icon: RemixIcons.check_fill,
|
||||||
title: "Healthy Skin",
|
title: "Healthy Skin",
|
||||||
desc: "Your skin appears to be in good condition.",
|
desc: "Your skin looks healthy!",
|
||||||
),
|
),
|
||||||
CardBox(
|
CardBox(
|
||||||
child: Wrap(
|
child: Wrap(
|
||||||
|
|||||||
@@ -55,14 +55,14 @@ class _WarningBoxState extends State<WarningBox> {
|
|||||||
StatusBox(
|
StatusBox(
|
||||||
color: Theme.of(context).colorScheme.warning,
|
color: Theme.of(context).colorScheme.warning,
|
||||||
icon: RemixIcons.error_warning_fill,
|
icon: RemixIcons.error_warning_fill,
|
||||||
title: "Troubled Skin",
|
title: "Skin Alert: Needs Attention",
|
||||||
desc: widget.data.concise ?? "",
|
desc: widget.data.concise ?? "",
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
width: double.infinity,
|
width: double.infinity,
|
||||||
margin: const EdgeInsets.only(top: 20),
|
margin: const EdgeInsets.only(top: 20),
|
||||||
child: Text(
|
child: Text(
|
||||||
"Find out more:",
|
"What's Next",
|
||||||
style: Theme.of(context).textTheme.titleSmall,
|
style: Theme.of(context).textTheme.titleSmall,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ class _RecordListPageState extends State<RecordListPage> with TickerProviderStat
|
|||||||
List<TabItem> tabList = [
|
List<TabItem> tabList = [
|
||||||
TabItem(name: "All", value: 0),
|
TabItem(name: "All", value: 0),
|
||||||
TabItem(name: "Healthy", value: 1),
|
TabItem(name: "Healthy", value: 1),
|
||||||
TabItem(name: "Unhealthy", value: 2),
|
TabItem(name: "Issues", value: 2),
|
||||||
];
|
];
|
||||||
|
|
||||||
//列表
|
//列表
|
||||||
|
|||||||
Reference in New Issue
Block a user