Skip to content

Instantly share code, notes, and snippets.

@haIIux
Last active March 2, 2022 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save haIIux/bc3dfe98dacefafb936144812f040b24 to your computer and use it in GitHub Desktop.
Save haIIux/bc3dfe98dacefafb936144812f040b24 to your computer and use it in GitHub Desktop.
Firebase Initialization - Swift
import SwiftUI
import Firebase
@main
struct MediumArticleApp: App {
init() {
FirebaseApp.configure()
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment