All Projects → mrcflorian → Login Screen Swift

mrcflorian / Login Screen Swift

Licence: mit
iOS Login Screen written in Swift 5

Programming Languages

swift
15916 projects
swift4
162 projects

Projects that are alternatives of or similar to Login Screen Swift

Onboardingfreebi
Simple demo of onboarding freebie screens from uplabs.com
Stars: ✭ 37 (-67.54%)
Mutual labels:  login, onboarding
social-auth-kivy
Integrate Google, Facebook, Github & Twitter login in kivy applications
Stars: ✭ 133 (+16.67%)
Mutual labels:  login, facebook-login
Android
Android projects with reusable components which will be useful in your applications.
Stars: ✭ 81 (-28.95%)
Mutual labels:  login, facebook-login
PopMovies
Aplicativo em Android para organização dos seus filmes favoritos.
Stars: ✭ 41 (-64.04%)
Mutual labels:  login, facebook-login
Argus Android
Login/Registration Module for Android
Stars: ✭ 89 (-21.93%)
Mutual labels:  facebook-login, onboarding
Coronatracker
Coronavirus tracker app for iOS & macOS with maps & charts
Stars: ✭ 1,374 (+1105.26%)
Mutual labels:  ios-app
Openssh Portable
Portable OpenSSH
Stars: ✭ 1,696 (+1387.72%)
Mutual labels:  login
Feedfire
FeedFire is a project to help developers integrate with Google Firebase.
Stars: ✭ 100 (-12.28%)
Mutual labels:  facebook-login
Stompclientlib
Simple STOMP Client library, Swift 3 and 4, 4.2, 5 compatible
Stars: ✭ 99 (-13.16%)
Mutual labels:  ios-app
Ios Rubik Solver
An iOS app that detects a 3x3 Rubik's cube, recognizes the color of all cubies, solves it and provides a 3D visualisation of the solving process.
Stars: ✭ 111 (-2.63%)
Mutual labels:  ios-app
Django Bruteforce Protection
Bruteforce protection for Django projects based on Redis. Simple, powerful, extendable.
Stars: ✭ 110 (-3.51%)
Mutual labels:  login
Blahker
巴拉剋 - Safari 蓋版廣告消除器
Stars: ✭ 103 (-9.65%)
Mutual labels:  ios-app
Matchimals.fun
🦁 🃏 📱 An animal matching puzzle card game– built with turn-based game engine boardgame.io and React-Native + React-Native-Web
Stars: ✭ 101 (-11.4%)
Mutual labels:  ios-app
Sol
☀️ Sol° beautifully displays weather information so you can plan your day accordingly. Check the weather in your current location or any city around the world. Implemented in Objective-C.
Stars: ✭ 1,430 (+1154.39%)
Mutual labels:  ios-app
Cognitiveconcierge
WARNING: This repository is no longer maintained ⚠️ This repository will not be updated. The repository will be kept available in read-only mode.
Stars: ✭ 100 (-12.28%)
Mutual labels:  ios-app
Spring Webmvc Pac4j
Security library for Spring Web MVC: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 110 (-3.51%)
Mutual labels:  login
Rn Voice Video Call
Usage of WebRTC for voice & video call with peer-to-peer or conference with Login and Register screen using response & Async storage with Call Dis/Connect, Failed and Idle views in react native. Youtube:
Stars: ✭ 100 (-12.28%)
Mutual labels:  login
Swiftcocoadsl
An easy way to write iOS UI
Stars: ✭ 103 (-9.65%)
Mutual labels:  ios-app
Wordpress App With Flutter
Fully Functional IOS/Android App for WordPress Website with Flutter
Stars: ✭ 109 (-4.39%)
Mutual labels:  ios-app
Flutter medical
Functioning Doctor/Healthcare Catalog App created using Dart with Flutter. Stores and loads data from Firebase Firestore DB.
Stars: ✭ 99 (-13.16%)
Mutual labels:  ios-app

iOS Login Screen in Swift

This project has been updated to Swift 5 and Xcode 11.2

About

This is a simple iOS login screen written in Swift 5. It has support for signing in with Facebook, Google and specially Apple, as well as the classic email & password form.

The template uses FacebookLogin and GoogleSignin frameworks, installed with Cocoapods.

Installation and configuration

First, you need to clone this repository, in order to fetch the code

$ git clone https://github.com/mrcflorian/login-screen-swift.git

In order to compile your code, you need to install the dependencies first (in our case, the frameworks from Twitter and Facebook). You can simply do this by running the following command in the root folder of the project (where the Pods file lives):

$ pod update

If you're not familiar with Cocoapods, checkout their website, to see how you can install it.

Once the pods were installed properly, open LoginScreen.xcworkspace with Xcode and run the project.

Everything should be working fine. There's one more thing to do though, since the code is using some default Facebook & Google applications. You need to update the code so that it uses your apps.

Open the Info.plist file (as source code) and update the following piece of code with your correct API keys:

<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb285315185217069</string>
        </array>
    </dict>
</array>
<key>FacebookAppID</key>
<string>285315185217069</string>
<key>FacebookDisplayName</key>
<string>iOSAppTemplates</string>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>fbapi</string>
    <string>fb-messenger-api</string>
    <string>fbauth2</string>
    <string>fbshareextension</string>
    <string>twitter</string>
    <string>twitterauth</string>
</array>

For Sign in with apple, you need to configure something on Certificates, Identifiers and Profiles. https://www.iosapptemplates.com/blog/ios-development/sign-in-with-apple-swift Check out the link above and do step 1 and step 2.

Documentation

The interface of the login screen can be found in Interface/LoginScreen.storyboard. The template uses auto layout contraints, to display the UI elements.

The core class is LoginViewController, which contains all the logic for the three different types of authentication. The code is pretty short and easy to understand.

If you want even more details on the project, please visit iOS App Templates.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].