FeatureBuddy

FeatureBuddy is client for FeatureBuddy Platform.

Features

  • Capture user feedback
  • Allow users to vote on features
  • Allow users to comment on features

Installation

To use this plugin, add featurebuddy as a dependency in your pubspec.yaml file.

Usage

Full example is available at /example folder.

import 'package:featurebuddy/featurebuddy.dart';

void main() {
  FeatureBuddyConfig.configure(apiKey: 'YOUR_API_KEY_GOES_HERE');
  runApp(const MyApp());
}

class FeaturesScreen extends StatelessWidget {
  const FeaturesScreen({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Features'),
      ),
      body: const FeatureBuddy(),
    );
  }
}

Getting Started

Full documentation is available at https://docs.featurebuddy.com