💄 Optimize styling

This commit is contained in:
2025-09-13 01:20:09 +08:00
parent 4cf035f2f1
commit a9a1680f5d
4 changed files with 163 additions and 71 deletions

View File

@@ -1,10 +1,12 @@
// 用来描述计算过程中的每一步
class CalculationStep {
final String title; // 这一步的标题,例如:“第一步:整理方程”
final int stepNumber; // 步骤编号例如1, 2, 3...
final String title; // 这一步的标题,例如:"整理方程"
final String explanation; // 对这一步的具体文字描述
final String formula; // 这一步得到的数学式子 (可以使用 LaTeX 格式)
CalculationStep({
required this.stepNumber,
required this.title,
required this.explanation,
required this.formula,