From d823520939c3f22968a37485c278dd6c118dd38e Mon Sep 17 00:00:00 2001 From: Ching Date: Thu, 4 May 2023 21:16:01 +0800 Subject: [PATCH] =?UTF-8?q?feat(View):=20=E4=BF=AE=E6=94=B9=20AccountListV?= =?UTF-8?q?iew=20=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改 AccountListView 样式 Signed-off-by: Ching --- duduji/Core/Authentication/Views/AccountListView.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/duduji/Core/Authentication/Views/AccountListView.swift b/duduji/Core/Authentication/Views/AccountListView.swift index 87011ad..2519a67 100644 --- a/duduji/Core/Authentication/Views/AccountListView.swift +++ b/duduji/Core/Authentication/Views/AccountListView.swift @@ -15,9 +15,13 @@ struct AccountListView: View { HStack { ZStack { RoundedRectangle(cornerRadius: 3) + .stroke(Color.gray, lineWidth: 1.5) .frame(width: 50, height: 50) + .background(.black) Image(systemName: "checkmark.circle.fill") .foregroundColor(.green) + .background(.white) + .clipShape(Circle()) .offset(x: 15, y: -15) .font(.title) } @@ -46,7 +50,7 @@ struct AccountListView: View { } .toolbar { ToolbarItem(placement: .navigationBarTrailing) { - Button("123") {} + Button("完成") {} } } }