This repository was archived by the owner on Mar 7, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ struct CertificateView: View {
198198
199199 var body : some View {
200200 NavigationStack {
201- ScrollView {
201+ Form {
202202 LazyVGrid ( columns: [ GridItem ( . flexible( ) ) , GridItem ( . flexible( ) ) ] , spacing: 20 ) {
203203 ForEach ( customCertificates) { cert in
204204 ZStack ( alignment: . top) {
@@ -210,7 +210,6 @@ struct CertificateView: View {
210210 }
211211 . padding ( 20 )
212212 . frame ( maxWidth: . infinity)
213- . background ( Color ( . systemGray6) )
214213 . cornerRadius ( 16 )
215214 . overlay (
216215 RoundedRectangle ( cornerRadius: 16 )
@@ -238,7 +237,7 @@ struct CertificateView: View {
238237 . foregroundColor ( . blue)
239238 . font ( . caption)
240239 . padding ( 8 )
241- . background ( Color . white . opacity ( 0.8 ) )
240+ . background ( Color ( . systemGray6 ) . opacity ( 0.8 ) )
242241 . clipShape ( Circle ( ) )
243242 }
244243
@@ -254,7 +253,7 @@ struct CertificateView: View {
254253 . foregroundColor ( customCertificates. count > 1 ? . red : . gray)
255254 . font ( . caption)
256255 . padding ( 8 )
257- . background ( Color . white . opacity ( 0.8 ) )
256+ . background ( Color ( . systemGray6 ) . opacity ( 0.8 ) )
258257 . clipShape ( Circle ( ) )
259258 }
260259 . disabled ( customCertificates. count <= 1 )
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ targets:
3030 properties :
3131 CFBundleDisplayName : " ProStore"
3232 CFBundleName : " prostore"
33- CFBundleVersion : " 33 "
34- CFBundleShortVersionString : " 1.6.0 "
33+ CFBundleVersion : " 34 "
34+ CFBundleShortVersionString : " 1.6.1 "
3535 UILaunchStoryboardName : " LaunchScreen"
3636 NSPrincipalClass : " UIApplication"
3737 NSAppTransportSecurity :
You can’t perform that action at this time.
0 commit comments