-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Edit template for creating SwiftUI application
- Loading branch information
1 parent
01b628d
commit a5ae2f5
Showing
12 changed files
with
25 additions
and
182 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
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
31 changes: 0 additions & 31 deletions
31
{{ cookiecutter.name }}/{{ cookiecutter.name }}/AppDelegate.swift
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
{{ cookiecutter.name }}/{{ cookiecutter.name }}/Classes/Application.swift
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,10 @@ | ||
import SwiftUI | ||
|
||
@main | ||
struct Application: App { | ||
var body: some Scene { | ||
WindowGroup { | ||
RootView() | ||
} | ||
} | ||
} |
65 changes: 0 additions & 65 deletions
65
{{ cookiecutter.name }}/{{ cookiecutter.name }}/Classes/Modules/Common/LineView.swift
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
...ecutter.name }}/{{ cookiecutter.name }}/Classes/Modules/Parent/NavigationController.swift
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
...e }}/{{ cookiecutter.name }}/Classes/Modules/Parent/NavigationStatusBarConfigurator.swift
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
{{ cookiecutter.name }}/{{ cookiecutter.name }}/Classes/Modules/Parent/ParentVC.swift
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
{{ cookiecutter.name }}/{{ cookiecutter.name }}/Classes/Modules/RootView.swift
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,7 @@ | ||
import SwiftUI | ||
|
||
struct RootView: View { | ||
var body: some View { | ||
Text("Hello, App") | ||
} | ||
} |
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
17 changes: 0 additions & 17 deletions
17
{{ cookiecutter.name }}/{{ cookiecutter.name }}/SceneDelegate.swift
This file was deleted.
Oops, something went wrong.