Sample apps
Travel
A travel-booking demo: home with featured destinations and trending packages, search with date-range filters, destination detail with amenities and reviews, multi-step booking flow, and saved-destinations favorites tab.
What it shows
- Featured destinations as a
LiqCarouselof high-resolution cards with rating + price overlay - Trending packages in a horizontal
ListViewof glass cards - Search with
LiqTextFieldquery +LiqDatePickerFielddate range +LiqDropdownButtonfor traveler count - Destination detail with
LiqSliverAppBarhero, amenities row ofLiqChips, weather card, reviews list ofLiqCards withLiqAvatarreviewers - Booking flow as a multi-step sheet: dates → travelers → payment → confirmation
- Favorites as a
SliverGridof bookmarked destinations
Components emphasized
LiqAppBar · LiqCarousel · LiqCard · LiqDatePickerField ·
LiqDropdownButton · LiqChip · LiqAvatar · LiqSheet ·
LiqStepper · LiqTextField
Source
apps/showcase_app/lib/demos/travel/
travel/
├── travel_demo.dart
├── models/
│ ├── travel_models.dart
│ └── travel_providers.dart
├── screens/
│ ├── travel_home_screen.dart
│ ├── destination_detail_screen.dart
│ ├── booking_screen.dart
│ ├── favorites_screen.dart
│ └── search_screen.dart
└── widgets/
├── destination_card.dart
├── search_suggestions.dart
└── travel_package_card.dart