StepperView

Additional

Language
Kotlin
Version
1.0.71 (Apr 8, 2019)
Created
Sep 17, 2018
Updated
Apr 8, 2019 (Retired)
Owner
Filipe Schmidt (FilipeLipan)
Contributor
Filipe Schmidt (FilipeLipan)
1
Activity
Badge
Generate
Download
Source code

StepperView

An Android CustomView that morphs base on the quantity of steps provided

Usage

At the time this StepperView has only one attribute, feel free to give me ideas for new properties !!

  app:quantity="2"
  
  app:titles="@array/test_array"
  
  <com.filipelipan.stepperview.StepperView
      android:id="@+id/stepper"
      android:layout_width="300dp"
      android:layout_height="wrap_content"
      app:layout_constraintBottom_toBottomOf="parent"
      app:layout_constraintEnd_toEndOf="parent"
      app:layout_constraintStart_toStartOf="parent"
      app:layout_constraintTop_toTopOf="parent"
      app:quantity="3"
      app:titles="@array/test_array"
      tools:ignore="MissingConstraints" />