PinLayout

General

Category
Free
Tag
Layouts
License
N/A
Registered
Jan 20, 2024
Favorites
0
Link
https://github.com/akndmr/PinLayout
See also
IGRefreshLayout
MarqueeLayoutLibrary
FlatUI
DoubleLift
Force layout

Additional

Language
Kotlin
Version
1.0.0 (Dec 4, 2022)
Created
Dec 4, 2022
Updated
Feb 15, 2023
Owner
Akın (akndmr)
Contributor
Akın (akndmr)
1
Activity
Badge
Generate
Download
Source code

PinLayout ⚬⚬⚬⚬

Android PinLayout for auth screens.

Installation

Step 1. Add the JitPack repository to your build file

  allprojects {
  repositories {
   ...
   maven { url 'https://jitpack.io' }
  }
 }

Step 2. Add the dependency

  dependencies {
     implementation 'com.github.akndmr:PinLayout:LatestVersion'
 }

Demo

Screen.Recording.2022-12-04.at.03.44.57.mov

Progressbar is for visual purposes; not part of PinLayout.

Usage

You can add pin by providing a data source like keyboard.

 addPinCode(code: String)

You can add whole pin from a clipboard.

 pasteFullPinCode(fullCode: String)

You can remove the last added pin.

 removePinCode()

You can clear PinLayout completely.

 clearPinCode()

You can register a listener for pin change and pin complete events.

 setOnPinChangeListener(
                    onPinChange = { pin ->
                        //todo
                    },
                    onPinComplete = {
                        //todo
                    }
                )

You can customize PinLayout with custom attributes.

 app:pin_count="8"
 app:pin_view_active_color="@color/bg3"
 app:pin_view_default_color="@color/bg4"
 app:pin_view_gap="12dp"
 app:pin_view_radius="16dp"
 app:pin_view_extra_gap="@dimen/margin_32"
 app:pin_view_extra_gap_index="3"

You can use extra gap attribute to group pin views to fit with your UI requirements.

Roadmap

  • Add custom animation support.