Skip to content

Latest commit

 

History

History
 
 

Badge

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Badge

Installation

Backpack Android is available through Jitpack. Check the main Readme for a complete installation guide.

Usage

The Badge component can be used in both XML and Kotlin

Example of a success type badge in XML

<net.skyscanner.backpack.badge.BpkBadge
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_margin="@dimen/bpkSpacingBase"
  app:message="Message"
  app:type="success"/>

Example of a success type badge in Kotlin

import net.skyscanner.backpack.badge.BpkBadge

BpkBadge(context).apply {
   message = 'Message'
   type = 'success'
}