We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e9f85b2 + c55e029 commit b679241Copy full SHA for b679241
GoInfoGame/GoInfoGame/UI/Profile/ProfileView.swift
@@ -76,6 +76,9 @@ struct LoggedInView: View {
76
Group {
77
if accessToken != nil {
78
VStack {
79
+ Text("My Profile")
80
+ .font(.title)
81
+
82
HStack {
83
profileImage
84
VStack (alignment: .leading,spacing: 0){
@@ -114,7 +117,7 @@ struct LoggedInView: View {
114
117
if self.viewModel.imageUrl == nil {
115
118
Image(systemName: "person.circle.fill")
116
119
.resizable()
- .frame(width: 120, height: 120, alignment: .center)
120
+ .frame(width: 80, height: 80, alignment: .center)
121
.cornerRadius(60)
122
}else {
123
AsyncImage(url: self.viewModel.imageUrl) { phase in
0 commit comments