├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── SwiftUIMSAL.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcuserdata │ │ └── robevans.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── robevans.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── SwiftUIMSAL ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist ├── MSALLogin.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SwiftUIMSAL.entitlements └── SwiftUIMSALApp.swift /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | SwiftUIMSAL/sekrets.swift 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/README.md -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/project.xcworkspace/xcuserdata/robevans.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/project.xcworkspace/xcuserdata/robevans.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftUIMSAL.xcodeproj/xcuserdata/robevans.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL.xcodeproj/xcuserdata/robevans.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SwiftUIMSAL/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SwiftUIMSAL/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SwiftUIMSAL/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIMSAL/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/ContentView.swift -------------------------------------------------------------------------------- /SwiftUIMSAL/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/Info.plist -------------------------------------------------------------------------------- /SwiftUIMSAL/MSALLogin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/MSALLogin.swift -------------------------------------------------------------------------------- /SwiftUIMSAL/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SwiftUIMSAL/SwiftUIMSAL.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/SwiftUIMSAL.entitlements -------------------------------------------------------------------------------- /SwiftUIMSAL/SwiftUIMSALApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arbyruns/SwiftUI-MSALSample/HEAD/SwiftUIMSAL/SwiftUIMSALApp.swift --------------------------------------------------------------------------------