- Welcome
- Getting started
- 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
Snackbar
A Snackbar provides brief messages about app processes at the bottom of screen.
Snackbar
Default
Day | Night |
---|---|
![]() |
![]() |
Icon
Day | Night |
---|---|
![]() |
![]() |
Installation
Backpack Android is available through Maven Central. Check the main Readme for a complete installation guide.
Usage
The Snackbar can be used in Kotlin/Java
import net.skyscanner.backpack.snackbar.BpkSnackbar
BpkSnackbar.make(view, "Message", BpkSnackbar.LENGTH_SHORT)
.setAction("Action") {}
.show()
An example with title and icon
import net.skyscanner.backpack.snackbar.BpkSnackbar
BpkSnackbar.make(view, "Message", BpkSnackbar.LENGTH_SHORT)
.setTitle("Title")
.setIcon(R.drawable.bpk_tick_circle, "Confirm")
.setAction("Action") {}
.show()
An example with icon-only action
import net.skyscanner.backpack.snackbar.BpkSnackbar
BpkSnackbar.make(view, "Message", BpkSnackbar.LENGTH_SHORT)
.setAction(R.drawable.bpk_close, "Close") {}
.show()
Theme Props
- snackbarTextColor
- snackbarActionColor
- snackbarBackgroundColor
Styles can be changed globally through bpkSnackbarStyle. The fonts will be applied globally from the current theme.
Check theming for more information.
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Oct 31, 2022, 13:23