This file contains hidden or 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
| SignInWithAppleButton( | |
| // Request User FullName and Email | |
| onRequest: { request in | |
| // You can change them if needed. | |
| request.requestedScopes = [.fullName, .email] | |
| }, | |
| // Once user complete, get result | |
| onCompletion: { result in | |
| // Switch result | |
| switch result { |
This file contains hidden or 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
| // | |
| // ViewController.swift | |
| // ARMotion | |
| // | |
| // Created on 9/2/20. | |
| // | |
| // Give Credit to Sarang Borude @sarangborude | |
| import UIKit | |
| import SceneKit |
This file contains hidden or 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
| // | |
| // ARCView.swift | |
| // ARMotion | |
| // | |
| // Created on 9/2/20. | |
| // | |
| import SwiftUI | |
| import Lottie |
NewerOlder