From 71a7f8aa8aecc84ae05023261953655fab0e7850 Mon Sep 17 00:00:00 2001 From: wangdl Date: Thu, 28 May 2026 20:56:17 +0800 Subject: [PATCH] =?UTF-8?q?fix(ios):=20ZXImportRow=20=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E9=97=AD=E5=90=88=20}=20=E5=AF=BC=E8=87=B4=20ImportReviewPage/?= =?UTF-8?q?EditKnowledgePage=20=E8=A2=AB=E5=B5=8C=E5=A5=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.7 --- AIStudyApp/AIStudyApp/Features/Library/LibrarySubpages.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/AIStudyApp/AIStudyApp/Features/Library/LibrarySubpages.swift b/AIStudyApp/AIStudyApp/Features/Library/LibrarySubpages.swift index c76ab02..9c789a4 100644 --- a/AIStudyApp/AIStudyApp/Features/Library/LibrarySubpages.swift +++ b/AIStudyApp/AIStudyApp/Features/Library/LibrarySubpages.swift @@ -752,6 +752,7 @@ struct ImportPage: View { struct ZXImportRow: View { let icon: String; let title: String; let desc: String var body: some View { HStack(spacing: 14) { Image(systemName: icon).font(.system(size: 22)).foregroundColor(Color.zxPurple).frame(width: 48, height: 48).background(Color.zxPurpleBG(0.1)).clipShape(RoundedRectangle(cornerRadius: 14)); VStack(alignment: .leading, spacing: 2) { Text(title).font(.system(size: 15, weight: .semibold)).foregroundColor(Color.zxF0); Text(desc).font(.system(size: 12)).foregroundColor(Color.zxF04) }; Spacer(); Image(systemName: "chevron.right").font(.system(size: 12)).foregroundColor(Color.zxF03) }.padding(16).background(Color.zxFill003).clipShape(RoundedRectangle(cornerRadius: 16)).overlay(RoundedRectangle(cornerRadius: 16).stroke(Color.zxBorder006, lineWidth: 1)) } +} // MARK: - Import Review