Sample apps
Social
A social-feed app structured like a typical photo-sharing product: stories bar, scrollable feed with rich post cards, profile grid, notifications, message threads, and a create-post sheet.
What it shows
- Feed with
LiqCard-shaped post cards, image header, author row withLiqAvatar,RichTextcaption with@mentions, like/comment/share row ofLiqIconButtons - Stories bar — horizontal
ListViewof avatar rings usingLiqAvatar+ gradient ring - Profile screen with sliver app bar, tab-strip via
LiqSegmentedControl, photo grid viaSliverGrid - Notifications with
Text.richcascading colored read-state styles - Create post as a modal
LiqSheetwith image picker, caption field, location chip, post button - Messages as a list of
LiqListRows opening into a threaded chat
Components emphasized
LiqCard · LiqAvatar · LiqIconButton · LiqSegmentedControl ·
LiqChip · LiqContextMenu · LiqSheet · LiqTextField ·
LiqFloatingActionButton · LiqBadge · LiqList
Source
apps/showcase_app/lib/demos/social/
social/
├── social_demo.dart
├── models/
│ ├── social_models.dart
│ └── social_providers.dart
├── screens/
│ ├── social_home_screen.dart
│ ├── feed_screen.dart
│ ├── explore_screen.dart
│ ├── profile_screen.dart
│ ├── messages_screen.dart
│ ├── notifications_screen.dart
│ └── create_post_screen.dart
└── widgets/
├── post_card.dart
└── story_bar.dart