smartlinks_feedback 2.0.3
smartlinks_feedback: ^2.0.3 copied to clipboard
A Flutter package for collecting user feedback with customizable UI, automatic language detection, and support for 30+ languages.
smartlinks_feedback #
Customizable in-app feedback form for the SmartLinks Flutter SDK.
Recommended:
SmartLinks.openFeedback()viasmartlinks_flutter. Full docs: repository README.
Features #
- Localized UI (30+ languages via
FeedbackStrings.auto()) - Custom titles, labels, and error messages
- Image attachments, name/email fields
- Premium vs free tier support (
isPremium) - Theme integration via
SmartLinksTheme
Quick start #
import 'package:smartlinks_flutter/smartlinks_flutter.dart';
await SmartLinks.initialize(
apiKey: 'YOUR_KEY',
appearance: SmartLinksAppearance(
feedbackStrings: FeedbackStrings(pageTitle: 'Contact us'),
),
);
await SmartLinks.openFeedback(
customNavigation: (page) => Navigator.push(
context,
MaterialPageRoute(builder: (_) => page),
),
);
License #
MIT — see LICENSE.