- 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
Text Input
Text inputs are used to capture textual information as well as numbers and passwords.
TextField
Default
Day | Night |
---|---|
![]() |
![]() |
Error
Day | Night |
---|---|
![]() |
![]() |
Validated
Day | Night |
---|---|
![]() |
![]() |
Disabled
Day | Night |
---|---|
![]() |
![]() |
Installation
Backpack Compose is available through Maven Central. Check the main Readme for a complete installation guide.
Usage
Note: If TextField is used inside BpkFieldSet it will inherit its default status from BpkFieldSet.
Example of a TextField:
import net.skyscanner.backpack.compose.textfield.BpkTextField
BpkTextField(
value = value,
onValueChange = { value -> },
placeholder = "Placeholder",
)
Example of a TextField with leading icon:
import net.skyscanner.backpack.compose.icon.BpkIcon
import net.skyscanner.backpack.compose.textfield.BpkTextField
import net.skyscanner.backpack.compose.tokens.Accessibility
BpkTextField(
value = value,
onValueChange = { value -> },
placeholder = "Placeholder",
icon = BpkIcon.Accessibility,
)
Example of a multiline TextField:
import net.skyscanner.backpack.compose.textfield.BpkTextField
BpkTextField(
value = value,
onValueChange = { value -> },
placeholder = "Placeholder",
maxLines = 3,
)
Example of a TextField with error status:
import net.skyscanner.backpack.compose.fieldset.BpkFieldStatus
import net.skyscanner.backpack.compose.textfield.BpkTextField
BpkTextField(
value = value,
onValueChange = { value -> },
placeholder = "Placeholder",
status = BpkFieldStatus.Error("Error text"),
)
Made with ❤️ by Skyscanner © 2023
© 2023 Skyscanner Backpack. Page last updated on Oct 31, 2022, 13:26