Skip to content

Commit

Permalink
Fix iOS 17 widget view (#1998)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/414235014887631/1205185500420499/f
Tech Design URL:
CC: @brindy

Description:

This PR fixes the iOS 17 widget view.

We're one beta away from GM, so I view it as unlikely that anything will improve here - to make sure we're safe, I've swapped over to a Circle view from Rectangle.
  • Loading branch information
samsymons authored Sep 11, 2023
1 parent f0990af commit 0c93248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Widgets/LockScreenWidgets.swift
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ struct LockScreenWidgetView: View {
.resizable()
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Rectangle().foregroundColor(.white.opacity(0.3)))
.background(Circle().foregroundColor(.white.opacity(0.3)))
}

}

0 comments on commit 0c93248

Please sign in to comment.