💄 Optimize styling
This commit is contained in:
@@ -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,
|
||||
|
Reference in New Issue
Block a user