Skip to content

Commit 44f3f6b

Browse files
committed
Use toolbar cloud SVG in container app
Replace SF Symbol 'cloud' with the actual toolbar icon SVG. Uses Asset Catalog with vector preservation for crisp scaling.
1 parent 9acd390 commit 44f3f6b

4 files changed

Lines changed: 30 additions & 3 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "icon.svg",
5+
"idiom" : "universal"
6+
}
7+
],
8+
"info" : {
9+
"author" : "xcode",
10+
"version" : 1
11+
},
12+
"properties" : {
13+
"preserves-vector-representation" : true
14+
}
15+
}
Lines changed: 6 additions & 0 deletions
Loading

CF Cache Status/CF Cache Status/ContentView.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ struct ContentView: View {
2424

2525
var body: some View {
2626
VStack(spacing: 20) {
27-
Image(systemName: "cloud")
28-
.font(.system(size: 72, weight: .thin))
29-
.foregroundStyle(.secondary)
27+
Image("ToolbarIcon")
28+
.resizable()
29+
.aspectRatio(contentMode: .fit)
30+
.frame(width: 72, height: 72)
3031

3132
Text(statusText)
3233
.multilineTextAlignment(.center)

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [Unreleased]
6+
7+
### Changed
8+
- Container app now uses toolbar cloud SVG instead of SF Symbol
9+
510
## [v0.0.5] - 2026-01-04
611

712
### Fixed

0 commit comments

Comments
 (0)