Skip to content

Commit b679241

Browse files
authored
Merge pull request #81 from TaskarCenterAtUW/feature-minor-ui-changes
add title and reduce profile icon size
2 parents e9f85b2 + c55e029 commit b679241

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

GoInfoGame/GoInfoGame/UI/Profile/ProfileView.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ struct LoggedInView: View {
7676
Group {
7777
if accessToken != nil {
7878
VStack {
79+
Text("My Profile")
80+
.font(.title)
81+
7982
HStack {
8083
profileImage
8184
VStack (alignment: .leading,spacing: 0){
@@ -114,7 +117,7 @@ struct LoggedInView: View {
114117
if self.viewModel.imageUrl == nil {
115118
Image(systemName: "person.circle.fill")
116119
.resizable()
117-
.frame(width: 120, height: 120, alignment: .center)
120+
.frame(width: 80, height: 80, alignment: .center)
118121
.cornerRadius(60)
119122
}else {
120123
AsyncImage(url: self.viewModel.imageUrl) { phase in

0 commit comments

Comments
 (0)