New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

applaunch-login

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

applaunch-login

testing

npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

React native Customizable Auth module

Fully Customizable Pre-build UI for the auth module which include login as well as Registration UI. Beside this you can also directly use Input, Buttons with various Customizable props

Installation

npm i applaunch-login

or

yarn add applaunch-login

Usage

import {LoginScreen, RegisterScreen, Button, Input} from 'applaunch-login';

# Login
  <LoginScreen
      style={{backgroundColor: 'white'}} //main container
      textInputContainerStyle={{}}
      logoImageSource={{}} //
      logoImageStyle={{}}
      emailPlaceholder="nikesh@applaunch.io"
      onEmailChange={email => {
        console.log(email);
      }}
      passwordPlaceholder="123456"
      onPasswordChange={password => {
        console.log(password);
      }}
      loginButtonStyle={{}}
      loginTextStyle={{}}
     loginButtonText={'Login'}
      onLoginPress={() => {
        alert('login');
      }}
      signupStyle={{}}
      signupTextStyle={{}}
      dividerStyle={{}}
      disableDivider={true}
      onSignupPress={() => {
        alert('login');
      }}
      iconImageSource={{}} //eye
    />

# Registration
  <RegisterScreen
      style={{backgroundColor: 'red'}}
      textInputContainerStyle={{}}
      emailPlaceholder="nikesh@applaunch.io"
      namePlaceholder="Nikesh"
      psswordPlaceholder="12345678"
      onNameChange={name => {
        console.log(name);
      }}
      onEmailChange={email => {
        console.log(email);
      }}
      onPasswordChange={password => {
        console.log(password);
      }}
      loginButtonStyle={{}}
      loginTextStyle={{}}
      onLoginPress={() => {
        alert('register');
      }}
      loginButtonText={'Register'}
    />

# Button
  <Button
    loginButtonStyle={loginButtonStyle}
    loginTextStyle={loginTextStyle}
    onLoginPress={onLoginPress}
    loginButtonText={loginButtonText}
 />

Contributing

Pull requests are welcome.

FAQs

Package last updated on 14 Sep 2022

Related posts