smartlinks_blogs
Blog list and article detail UI for the SmartLinks Flutter SDK.
Recommended:
SmartLinks.blogs.open()viasmartlinks_flutter. Full docs: repository README.
Quick start
import 'package:smartlinks_flutter/smartlinks_flutter.dart';
await SmartLinks.initialize(
apiKey: 'YOUR_KEY',
appearance: SmartLinksAppearance(
blogsStrings: BlogsStrings(pageTitle: 'News', searchHint: 'Search articles...'),
),
);
SmartLinks.blogs.open(
theme: SmartLinksTheme(accentColor: Colors.deepPurple),
);
Features
- Paginated blog list with search
- HTML article rendering, image fullscreen, share sheet
BlogsStringsfor host branding overrides
License
MIT — see LICENSE.
Libraries
- blogs/blogs
- blogs/controllers/blog_controller
- blogs/core/blogs_strings
- blogs/data/models/blog_post
- blogs/data/models/blog_response
- blogs/data/services/blog_api_service
- blogs/presentation/blog_detail_page
- blogs/presentation/blogs_page
- blogs/presentation/blogs_theme_ext
- blogs/presentation/widgets/blog_card
- blogs/presentation/widgets/blog_search_bar
- smartlinks_blogs