- Welcome
- Getting started
- Latest updates
- Foundations
-
Components
- Accordion
- Alert
- Alignment
- Aria live
- Autosuggest
- Badge
- Banner alert
- Bar chart
- Blockquote
- Bottom navigation
- Bottom sheet
- Breadcrumb
- Breakpoint
- Button
- Calendar
- Card
- Card List
- Card button
- Carousel
- Checkbox
- Chip
- Chip group
- 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 header
- Section list
- Select
- Skeleton
- Skip link
- Slider
- Snackbar
- Snippet
- Spinner
- Split input
- Star rating
- Switch
- Table
- Text
- Text input
- Theming
- Ticket
- Toast
- Tooltip
- Touchable native feedback
- Touchable overlay
- Content
- Accessibility
Dialog
Dialogs inform users about a specific task and may contain critical information, or require decisions or acknowledgement.
Dialog
Delete confirmation
Day | Night |
---|---|
![]() |
![]() |
With CTA
Day | Night |
---|---|
![]() |
![]() |
With flare
Day | Night |
---|---|
![]() |
![]() |
Installation
Backpack Android is available through Maven Central. Check the main Readme for a complete installation guide.
Usage
The Dialog component can only be used in Kotlin/Java
Example of dialog in Kotlin
import net.skyscanner.backpack.dialog.BpkDialog
import net.skyscanner.backpack.dialog.BpkDialog.Type
import net.skyscanner.backpack.dialog.BpkDialog.Button
val dialog = BpkDialog(context, BpkDialog.Type.Success)
dialog.apply {
title = "You are going to Tokyo!"
description = "Your flight is all booked. Why not check out some hotels now?"
icon = BpkDialog.Icon(R.drawable.bpk_tick)
addActionButton(
BpkDialog.Button("Continue") {
println("confirmed")
dialog.dismiss()
}
)
addActionButton(
BpkDialog.Button("Skip") {
println("skipped")
dialog.dismiss()
}
)
}
Example of flare dialog in Kotlin
import net.skyscanner.backpack.dialog.BpkDialog
import net.skyscanner.backpack.dialog.BpkDialog.Type
import net.skyscanner.backpack.dialog.BpkDialog.Button
val dialog = BpkDialog(context, BpkDialog.Type.Flare)
dialog.apply {
title = "You are going to Tokyo!"
description = "Your flight is all booked. Why not check out some hotels now?"
Picasso.get().load(url).into(image)
addActionButton(
BpkDialog.Button("Continue") {
println("confirmed")
dialog.dismiss()
}
)
addActionButton(
BpkDialog.Button("Skip") {
println("skipped")
dialog.dismiss()
}
)
}
Please use DialogInterface.OnDismissListener as the DialogInterface.OnCancelListener is not supported.
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Oct 31, 2022, 13:16