- Welcome
- Getting started
- Monthly update
- Foundations
-
Components
- Accordion
- Alert
- Alignment
- Aria Live
- Autosuggest
- Badge
- Banner Alert
- Bar Chart
- Blockquote
- Bottom Navigation
- Bottom Sheet
- Breadcrumb
- Breakpoint
- Button
- Calendar
- Card
- Card Button
- Carousel
- Checkbox
- Chip
- Code
- Content Cards
- Data Table
- Datepicker
- Description List
- Dialog
- Divider
- Drawer
- Field Set
- Flare
- Flat List
- Flight Leg
- Floating Action Button
- Floating Notification
- Form Label
- Form Validation
- Graphic Promotion
- Horizontal Navigation
- Icon
- Image
- Infinite Scroll
- Link
- List
- Map
- Mobile Scroll Container
- Modal
- Navigation Bar
- Nudger
- Overlay
- Page Indicator
- Pagination
- Panel
- Phone Input
- Picker
- Popover
- Price
- Progress Bar
- Radio Button
- Rating
- Scrollable Calendar
- Section List
- Select
- Skeleton
- Skip Link
- Slider
- Snackbar
- Spinner
- Split Input
- Star Rating
- Switch
- Table
- Text
- Text Input
- Theming
- Ticket
- Toast
- Tooltip
- Touchable Native Feedback
- Touchable Overlay
- Content
- Accessibility
Button
Buttons help our travellers make all kinds of action, from logging in to booking that dream trip.
Button
Default
Day | Night |
---|---|
![]() |
![]() |
Large
Day | Night |
---|---|
![]() |
![]() |
Link
Day | Night |
---|---|
![]() |
![]() |
Drawable Icon
Day | Night |
---|---|
![]() |
![]() |
Installation
Backpack Compose is available through Maven Central. Check the main Readme for a complete installation guide.
Usage
Example of a text Button with default (small) size and primary type:
import net.skyscanner.backpack.compose.button.BpkButton
import net.skyscanner.backpack.compose.button.BpkButtonSize
import net.skyscanner.backpack.compose.button.BpkButtonType
BpkButton(
text = stringResource(R.string.my_button_text),
size = BpkButtonSize.Default,
type = BpkButtonType.Primary,
) {
// onClick
}
Example of a disabled button:
import net.skyscanner.backpack.compose.button.BpkButton
BpkButton(
text = stringResource(R.string.my_button_text),
enabled = false,
) {
// onClick
}
Example of a loading button:
import net.skyscanner.backpack.compose.button.BpkButton
BpkButton(
text = stringResource(R.string.my_button_text),
loading = true,
) {
// onClick
}
Example of a large button:
import net.skyscanner.backpack.compose.button.BpkButton
import net.skyscanner.backpack.compose.button.BpkButtonSize
BpkButton(
text = stringResource(R.string.my_button_text),
size = BpkButtonSize.Large,
) {
// onClick
}
Example of a secondary button:
import net.skyscanner.backpack.compose.button.BpkButton
import net.skyscanner.backpack.compose.button.BpkButtonType
BpkButton(
text = stringResource(R.string.my_button_text),
type = BpkButtonType.Secondary,
) {
// onClick
}
Example of a icon only button:
import net.skyscanner.backpack.compose.button.BpkButton
import net.skyscanner.backpack.compose.icons.BpkIcons
import net.skyscanner.backpack.compose.icons.sm.LongArrowRight
BpkButton(
icon = BpkIcons.Sm.LongArrowRight,
contentDescription = stringResource(R.string.my_button_content_description),
) {
// onClick
}
Example of a button with leading icon and text:
import net.skyscanner.backpack.compose.button.BpkButton
import net.skyscanner.backpack.compose.button.BpkButtonIconPosition
import net.skyscanner.backpack.compose.icons.BpkIcons
import net.skyscanner.backpack.compose.icons.sm.LongArrowRight
BpkButton(
text = stringResource(R.string.my_button_text),
icon = BpkIcons.Sm.LongArrowRight,
position = BpkButtonIconPosition.Start,
) {
// onClick
}
Example of a button with custom icon and text:
import net.skyscanner.backpack.compose.button.BpkButton
import androidx.compose.ui.res.painterResource
BpkButton(
text = stringResource(R.string.my_button_text),
icon = painterResource(id = R.drwable.custom_icon),
) {
// onClick
}
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Nov 21, 2022, 15:07