阅读"在对话里找到答案": - 16 道题全部重写,干扰项真实出现在对话里,靠说话人归属或否定句才能作答 - 选项按题目内容确定性打乱,答案不再固定排第一;听力环节同样处理 - 去掉超纲干扰项、重复题干,收紧自由作答匹配(过去单个字母也能判对) AI 情境对话: - 提示词区分"AI 这一句要做什么"与"学习者随后要完成什么",并下发已教词句清单 - JSON 只强制 reply,translation/feedback 可选;不再索要用不上的 slots/evidence - AI 不可用时页面明确提示当前回复来自内置示范脚本 - 删掉按 stage 下标猜中文翻译的兜底,避免译文与英文对不上 - 整课对话改用逐轮必需表达校验,替换"关键词沾边就算过";修正自由场景正则误伤 - 总结的"完成任务"按实际通过的轮次生成;模型点评只在结束页呈现一次 - 自由场景支持草稿续练(独立存储槽);修正回答轮数文案与永不解锁的场景标注 同时提交此前工作区中累积的改动:SenseVoice 本地识别、查词/句型解析卡、 复习与测评页调整等,并补充对话校验、选项分布和句子解析的测试。 Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
173 lines
3.9 KiB
Dart
173 lines
3.9 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
import '../core/app_theme.dart';
|
|
|
|
class AppPage extends StatelessWidget {
|
|
const AppPage({
|
|
super.key,
|
|
required this.child,
|
|
this.appBar,
|
|
this.bottomNavigationBar,
|
|
this.scrollController,
|
|
});
|
|
|
|
final Widget child;
|
|
final PreferredSizeWidget? appBar;
|
|
final Widget? bottomNavigationBar;
|
|
final ScrollController? scrollController;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: appBar,
|
|
bottomNavigationBar: bottomNavigationBar,
|
|
body: SafeArea(
|
|
top: appBar == null,
|
|
child: SingleChildScrollView(
|
|
controller: scrollController,
|
|
padding: const EdgeInsets.fromLTRB(16, 20, 16, 24),
|
|
child: child,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class SectionCard extends StatelessWidget {
|
|
const SectionCard({
|
|
super.key,
|
|
required this.child,
|
|
this.tint,
|
|
this.onTap,
|
|
this.padding = const EdgeInsets.all(14),
|
|
});
|
|
|
|
final Widget child;
|
|
final Color? tint;
|
|
final VoidCallback? onTap;
|
|
final EdgeInsets padding;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final content = Padding(padding: padding, child: child);
|
|
return Material(
|
|
color: tint ?? AppColors.surface,
|
|
borderRadius: BorderRadius.circular(16),
|
|
child: InkWell(
|
|
onTap: onTap,
|
|
borderRadius: BorderRadius.circular(16),
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
border: Border.all(color: AppColors.line),
|
|
borderRadius: BorderRadius.circular(16),
|
|
),
|
|
child: content,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class PrimaryButton extends StatelessWidget {
|
|
const PrimaryButton({
|
|
super.key,
|
|
required this.label,
|
|
required this.onPressed,
|
|
this.icon,
|
|
});
|
|
|
|
final String label;
|
|
final VoidCallback? onPressed;
|
|
final IconData? icon;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
width: double.infinity,
|
|
height: 50,
|
|
child: FilledButton.icon(
|
|
onPressed: onPressed,
|
|
icon: icon == null ? const SizedBox.shrink() : Icon(icon),
|
|
label: Text(label),
|
|
style: FilledButton.styleFrom(
|
|
backgroundColor: AppColors.green,
|
|
foregroundColor: Colors.white,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(14),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class SecondaryButton extends StatelessWidget {
|
|
const SecondaryButton({
|
|
super.key,
|
|
required this.label,
|
|
required this.onPressed,
|
|
});
|
|
|
|
final String label;
|
|
final VoidCallback? onPressed;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SizedBox(
|
|
width: double.infinity,
|
|
height: 48,
|
|
child: OutlinedButton(
|
|
onPressed: onPressed,
|
|
style: OutlinedButton.styleFrom(
|
|
foregroundColor: AppColors.ink,
|
|
side: const BorderSide(color: AppColors.line),
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(14),
|
|
),
|
|
),
|
|
child: Text(label),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class Eyebrow extends StatelessWidget {
|
|
const Eyebrow(this.text, {super.key});
|
|
|
|
final String text;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => Text(
|
|
text,
|
|
style: const TextStyle(
|
|
color: AppColors.green,
|
|
fontWeight: FontWeight.w600,
|
|
fontSize: 13,
|
|
),
|
|
);
|
|
}
|
|
|
|
class SpacedColumn extends StatelessWidget {
|
|
const SpacedColumn({
|
|
super.key,
|
|
required this.children,
|
|
this.spacing = 12,
|
|
this.crossAxisAlignment = CrossAxisAlignment.start,
|
|
});
|
|
|
|
final List<Widget> children;
|
|
final double spacing;
|
|
final CrossAxisAlignment crossAxisAlignment;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => Column(
|
|
crossAxisAlignment: crossAxisAlignment,
|
|
children: [
|
|
for (var index = 0; index < children.length; index++) ...[
|
|
children[index],
|
|
if (index < children.length - 1) SizedBox(height: spacing),
|
|
],
|
|
],
|
|
);
|
|
}
|