smartlinks_feedback

Customizable in-app feedback form for the SmartLinks Flutter SDK.

Recommended: SmartLinks.openFeedback() via smartlinks_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.