All Projects → WillyShakes → MasterLogin

WillyShakes / MasterLogin

Licence: other
A sample Flutter (https://flutter.io) app using Auth0.

Programming Languages

dart
5743 projects
java
68154 projects - #9 most used programming language
swift
15916 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to MasterLogin

graphql-sample-apps
This repository contains sample GraphQL applications powered by Dgraph.
Stars: ✭ 65 (+150%)
Mutual labels:  auth0
auth0-xamarin-oidc-samples
Auth0 OIDC Client with Xamarin applications
Stars: ✭ 26 (+0%)
Mutual labels:  auth0
nativescript-auth0
Nativescript Auth0 https://auth0.com/ social authentication plugin
Stars: ✭ 57 (+119.23%)
Mutual labels:  auth0
akka-jwt
Library for jwt authentication with akka
Stars: ✭ 16 (-38.46%)
Mutual labels:  auth0
remix-auth
Simple Authentication for Remix
Stars: ✭ 929 (+3473.08%)
Mutual labels:  auth0
roadmap
Build and deploy a roadmap voting app for your project/product.
Stars: ✭ 46 (+76.92%)
Mutual labels:  auth0
Kuberam
Kuberam is built on jetpack compose + Auth0 during Hashnode Hackathon.
Stars: ✭ 33 (+26.92%)
Mutual labels:  auth0
fake-survey-generator
A slightly more-than-trivial full-stack application built with DDD & CQRS concepts
Stars: ✭ 49 (+88.46%)
Mutual labels:  auth0
fastapi-cloudauth
Simple integration between FastAPI and cloud authentication services (AWS Cognito, Auth0, Firebase Authentication).
Stars: ✭ 221 (+750%)
Mutual labels:  auth0
fastapi-auth0
FastAPI authentication and authorization using auth0.com
Stars: ✭ 104 (+300%)
Mutual labels:  auth0
authing.js
🖥 Authing SDK for JavaScript and Node.js
Stars: ✭ 540 (+1976.92%)
Mutual labels:  auth0
auth0-rocket-rust-example
Rocket app that authenticates users with Auth0
Stars: ✭ 30 (+15.38%)
Mutual labels:  auth0
ertis-auth
Generic token generator and validator service like auth
Stars: ✭ 28 (+7.69%)
Mutual labels:  auth0
auth0-vue
A simple Vue.js Demo Application that uses Auth0 for Authentication
Stars: ✭ 39 (+50%)
Mutual labels:  auth0
auth0documentdb
Sample repository for Auth0 & Azure DocumentDB integration
Stars: ✭ 14 (-46.15%)
Mutual labels:  auth0
dokugaku-engineer
独学エンジニア
Stars: ✭ 184 (+607.69%)
Mutual labels:  auth0
auth0
Auth0 API in Haskell
Stars: ✭ 26 (+0%)
Mutual labels:  auth0
Healthify
Healthify - An app to track your daily water intake and sleep and boost your work efficiency. Healthify is built using Kotlin and follows all modern android Development practices and hence is a good learning resource for beginners
Stars: ✭ 37 (+42.31%)
Mutual labels:  auth0
dokusho
Simple Japanese reading stats tracker
Stars: ✭ 12 (-53.85%)
Mutual labels:  auth0
JWT-user-auth-API-bolilerplate
Boilerplate for backend API user authentication with JWT
Stars: ✭ 13 (-50%)
Mutual labels:  auth0

Masterlogin

An example of an app with Authentication on Flutter, using Auth0.

Masterlogin contains platform-specific elements for Android and iOS.

Installation and Usage

  1. Follow the installation instructions on https://flutter.io/get-started/install/ to install Flutter.

    • System requirements
      • Operating System of 64 bit (Windows, MacOs, Linux)
      • Disk Space: Windows - 400 MB, MacOs - 700 MB, Linux - 600 MB
      • Tools: Windows (git), MacOs-Linux (bash, mkdir, rm, git, curl, unzip, which)
    • Get the Flutter SDK To get Flutter, use git to clone this repository and then add the flutter tool (path\to\flutter\bin) to your computer path.
    • run "flutter doctor" on command prompt or POWER SHELL. Running flutter doctor shows any remaining dependencies you may need to install.
    • iOS setup
      • Install Xcode
      • Set up the iOS simulator
      • if you want to deploy to iOs devices you need to intall these dependencies: homebrew, libimobiledevice, ideviceinstaller, ios-deploy, cocoapods
    • Android setup
      • Install Android Studio, IntelliJ or Visual Studio Code
      • Dependencies: Flutter and Dart plugins (Android Studio, IntelliJ) - dart code Extension (Visual Studio Code)
      • Set up your Android device or emulator
  2. Clone this repository

  3. You'll need to create an Auth0 account. Follow the instructions at https://manage.auth0.com.

  4. Once your Auth0 account is created, you'll need to get Client ID and Domain.

    • Create a new client application in your Auth0 dashboard. For Type, select Native.
    • Go to the Settings section and get your Client ID and Domain
  5. Configure Callback URLs Go to your Client's Dashboard Settings and make sure that Allowed Callback URLs contains the following for each platform you are supporting.

    iOS Callback

http://localhost:8585

Remember to replace PRODUCT_BUNDLE_IDENTIFIER with your actual application's bundle identifier name and DOMAIN with your domain.

Android Callback

http://localhost:8585
  1. Configure Firebase

You'll need to create a Firebase instance. Follow the instructions at https://console.firebase.google.com.

Android

Create an app within your Firebase instance for Android, with package name com.example.masterlogin

Run the following command to get your signing certificate SHA-1:

keytool -exportcert -list -v \
-alias androiddebugkey -keystore ~/.android/debug.keystore

In the Firebase console, in the settings of your Android app, add your signing certificate SHA-1. Follow instructions to download google-services.json and place it into \masterlogin\android\app.

Ios

Create an app within your Firebase instance for iOS, with bundle ID io.flutter.flutter.app Follow instructions to download GoogleService-Info.plist, and place it into \masterlogin\ios\Runner in XCode.

Open a terminal window and navigate to the location of the Xcode project for your app. Create a Podfile if you don't have one:

pod init

Open your Podfile and add:

pod 'Firebase/Core'

Save the file and run:

pod install
  1. MasterLogin can be run like any other Flutter app, either through IntelliJ, Android Studio, Visual Studio Code or through running the following command from within the masterlogin directory:
flutter run
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].