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("完成") {} } } }