Original PR: https://github.com/ivanvorobei/SwiftUI/pull/4 Author: @alexliubj Created: 6/27/2019 Status: ✅ Merged Merged: 6/27/2019 Merged by: @ivanvorobei
Base: master ← Head: master
master
9ebaee5
a1bcede
22 files changed (+1618 additions, -0 deletions)
➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.pbxproj (+611 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata (+7 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist (+8 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/AddCurrencyView.swift (+62 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/AppDelegate.swift (+58 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json (+98 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/Contents.json (+6 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/Base.lproj/LaunchScreen.storyboard (+25 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/ConverterView.swift (+158 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyData.swift (+59 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyItemView.swift (+82 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyList.swift (+69 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/Info.plist (+62 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json (+6 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/SceneDelegate.swift (+78 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUI/UserData.swift (+78 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Currency_SwiftUITests.swift (+51 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Info.plist (+22 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Currency_SwiftUIUITests.swift (+51 -0) ➕ Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Info.plist (+22 -0)
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.pbxproj
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
Other Projects/Currency-SwiftUI/Currency-SwiftUI/AddCurrencyView.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/AppDelegate.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/Contents.json
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Base.lproj/LaunchScreen.storyboard
Other Projects/Currency-SwiftUI/Currency-SwiftUI/ConverterView.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyData.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyItemView.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyList.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Info.plist
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json
Other Projects/Currency-SwiftUI/Currency-SwiftUI/SceneDelegate.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUI/UserData.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Currency_SwiftUITests.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Info.plist
Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Currency_SwiftUIUITests.swift
Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Info.plist
...and 2 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 Pull Request Information
Original PR: https://github.com/ivanvorobei/SwiftUI/pull/4
Author: @alexliubj
Created: 6/27/2019
Status: ✅ Merged
Merged: 6/27/2019
Merged by: @ivanvorobei
Base:
master← Head:master📝 Commits (2)
9ebaee5Added currency appa1bcedeAdded a project.📊 Changes
22 files changed (+1618 additions, -0 deletions)
View changed files
➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.pbxproj(+611 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata(+7 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist(+8 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/AddCurrencyView.swift(+62 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/AppDelegate.swift(+58 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/AppIcon.appiconset/Contents.json(+98 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Assets.xcassets/Contents.json(+6 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Base.lproj/LaunchScreen.storyboard(+25 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/ConverterView.swift(+158 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyData.swift(+59 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyItemView.swift(+82 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/CurrencyList.swift(+69 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Info.plist(+62 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/Preview Content/Preview Assets.xcassets/Contents.json(+6 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/SceneDelegate.swift(+78 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUI/UserData.swift(+78 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Currency_SwiftUITests.swift(+51 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUITests/Info.plist(+22 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Currency_SwiftUIUITests.swift(+51 -0)➕
Other Projects/Currency-SwiftUI/Currency-SwiftUIUITests/Info.plist(+22 -0)...and 2 more files
📄 Description
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.