featurebuddy 0.0.1 copy "featurebuddy: ^0.0.1" to clipboard
featurebuddy: ^0.0.1 copied to clipboard

FeatureBuddy Flutter SDK

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

0
likes
130
points
21
downloads

Publisher

verified publisherfeaturebuddy.com

Weekly Downloads

FeatureBuddy Flutter SDK

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http, provider, shared_preferences, uuid

More

Packages that depend on featurebuddy