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