Skip to content

Commit

Permalink
Merge pull request #160 from markjeschke/markj/remove-splash-view
Browse files Browse the repository at this point in the history
Removed extraneous SplashView
  • Loading branch information
NickCulbertson authored Jul 1, 2024
2 parents b640a23 + 81aec34 commit 23e2d1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 39 deletions.
3 changes: 1 addition & 2 deletions Cookbook/Cookbook/CookbookApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ struct CookbookApp: App {

var body: some Scene {
WindowGroup {
SplashView()
.accentColor(Color.blue)
ContentView()
}
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import SwiftUI

struct ContentView: View {
var body: some View {
public struct ContentView: View {
public init() {}
public var body: some View {
NavigationView {
MasterView()
}.navigationViewStyle(StackNavigationViewStyle())
Expand Down
35 changes: 0 additions & 35 deletions Cookbook/CookbookCommon/Sources/CookbookCommon/SplashView.swift

This file was deleted.

0 comments on commit 23e2d1f

Please sign in to comment.