-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b7f6e9a
commit 2f25515
Showing
10 changed files
with
348 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# Xcode | ||
# | ||
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore | ||
|
||
## User settings | ||
xcuserdata/ | ||
|
||
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) | ||
*.xcscmblueprint | ||
*.xccheckout | ||
|
||
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) | ||
build/ | ||
DerivedData/ | ||
*.moved-aside | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
|
||
## Obj-C/Swift specific | ||
*.hmap | ||
|
||
## App packaging | ||
*.ipa | ||
*.dSYM.zip | ||
*.dSYM | ||
|
||
## Playgrounds | ||
timeline.xctimeline | ||
playground.xcworkspace | ||
|
||
# Swift Package Manager | ||
# | ||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. | ||
# Packages/ | ||
# Package.pins | ||
# Package.resolved | ||
# *.xcodeproj | ||
# | ||
# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata | ||
# hence it is not needed unless you have added a package configuration file to your project | ||
# .swiftpm | ||
|
||
.build/ | ||
|
||
|
||
# Code Injection | ||
# | ||
# After new code Injection tools there's a generated folder /iOSInjectionProject | ||
# https://github.com/johnno1962/injectionforxcode | ||
|
||
iOSInjectionProject/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
SFSymbolsArtCollection.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"pins" : [ | ||
{ | ||
"identity" : "sfuserfriendlysymbols", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/littleossa/SFUserFriendlySymbols.git", | ||
"state" : { | ||
"revision" : "9d003e1c818de1dbe34a36b197ce11d9524a54d9", | ||
"version" : "0.4.0" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// Fire.swift | ||
// SFSymbolsArtCollection | ||
// | ||
// Created by 平岡修 on 2022/04/26. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct Fire: View { | ||
var body: some View { | ||
ZStack { | ||
DrawingSymbol(.flameFill, color: .yellow, width: 50, height: 80, flipType: .vertical) | ||
|
||
DrawingSymbol(.flame, color: .red, width: 50, height: 80, flipType: .vertical) | ||
} | ||
} | ||
} | ||
|
||
struct Fire_Previews: PreviewProvider { | ||
static var previews: some View { | ||
Fire() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// | ||
// Flower.swift | ||
// SFSymbolsArtCollection | ||
// | ||
// Created by 平岡修 on 2022/04/26. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct Flower: View { | ||
var body: some View { | ||
ZStack { | ||
DrawingSymbol(.cameraMacro, color: .green, width: 80, height: 100) | ||
|
||
DrawingSymbol(.ovalPortraitFill, color: .pink, width: 50, height: 60, offsetY: -30) | ||
|
||
DrawingSymbol(.rhombusFill, color: .white, width: 50, height: 60, offsetX: 9, offsetY: -70) | ||
|
||
DrawingSymbol(.rhombusFill, color: .white, width: 50, height: 60, offsetX: -9, offsetY: -70) | ||
} | ||
} | ||
} | ||
|
||
struct Flower_Previews: PreviewProvider { | ||
static var previews: some View { | ||
Flower() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// FlyingFlower.swift | ||
// SFSymbolsArtCollection | ||
// | ||
// Created by lil Ossa on 2022/04/26. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct FlyingFlower: View { | ||
var body: some View { | ||
|
||
ZStack { | ||
|
||
Sky() | ||
|
||
VStack(spacing: 0) { | ||
Flower() | ||
Fire() | ||
} | ||
.rotationEffect(.degrees(-30)) | ||
.offset(x: -10, y: 33) | ||
} | ||
} | ||
} | ||
|
||
struct TulipGarden_Previews: PreviewProvider { | ||
static var previews: some View { | ||
FlyingFlower() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// | ||
// Sky.swift | ||
// SFSymbolsArtCollection | ||
// | ||
// Created by 平岡修 on 2022/04/26. | ||
// | ||
|
||
import SwiftUI | ||
|
||
struct Sky: View { | ||
var body: some View { | ||
|
||
ZStack { | ||
Image(symbol: .rectangleFill) | ||
.resizable() | ||
.foregroundColor(.blue) | ||
|
||
VStack(spacing: 40) { | ||
ForEach(0..<10) { _ in | ||
|
||
HStack(spacing: 20) { | ||
ForEach(0..<6) { _ in | ||
DrawingSymbol(.cloudFill, color: .white, width: 100, height: 80) | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
struct Sky_Previews: PreviewProvider { | ||
static var previews: some View { | ||
Sky() | ||
} | ||
} |
Oops, something went wrong.