Sample apps
News
A news/reader app: breaking-news carousel, category chips, scrollable article list, immersive article-detail view with a sliver-collapse hero, and a bookmarks library.
What it shows
- Breaking-news banner as a
LiqCarouselwith auto-advance - Weather widget glass card with icon + temperature + location
- Category chips as horizontal-scroll
LiqChips for topic filtering - Article cards with thumbnail, headline, author + read-time, tap to open detail
- Article detail with
LiqSliverAppBar+LiqFlexibleSpaceBarhero image,Image.networkbody, related-articles strip - Bookmarks as
LiqDismissiblerows for unbookmark-on-swipe - Search with
LiqTextField+ recent-searches pill row
Components emphasized
LiqAppBar · LiqSliverAppBar · LiqFlexibleSpaceBar · LiqCarousel ·
LiqChip · LiqCard · LiqAvatar · LiqDismissible · LiqTextField
Source
apps/showcase_app/lib/demos/news/
news/
├── news_demo.dart
├── models/
│ ├── news_models.dart
│ └── news_providers.dart
├── screens/
│ ├── news_home_screen.dart
│ ├── article_detail_screen.dart
│ ├── bookmarks_screen.dart
│ └── search_screen.dart
└── widgets/
├── article_card.dart
├── breaking_news_banner.dart
├── category_chips.dart
└── weather_widget.dart