flutter_firebase_feature_feedback 0.0.3
flutter_firebase_feature_feedback: ^0.0.3 copied to clipboard
A Flutter package that enables developers to collect and manage feature feedback from their users using Firebase. Users can submit feature requests and vote on existing ones.
Flutter Firebase Feature Feedback #
A Flutter package that enables developers to collect and manage feature feedback from their users using Firebase. This package provides an easy way to implement feature request functionality in your Flutter applications.
Features #
- 🎯 Easy-to-use Feature Feedback Widget
- 🔥 Firebase Integration
- 👥 User Voting System
- 📊 Feature Request Management
- 🔄 Real-time Updates
- 🎨 Customizable UI
Getting Started #
Prerequisites #
- Add Firebase to your Flutter project
- Enable Cloud Firestore in your Firebase Console
Installation #
Add this to your package's pubspec.yaml
file:
dependencies:
flutter_firebase_feature_feedback: ^0.0.1
copied to clipboard
Firebase Setup #
- Initialize Firebase in your app:
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
copied to clipboard
- Ensure you have the necessary Firebase configuration files:
google-services.json
(Android)GoogleService-Info.plist
(iOS)
Usage #
- Wrap your app with the FeatureFeedbackProvider:
void main() {
runApp(
FeatureFeedbackProvider(
child: MyApp(),
),
);
}
copied to clipboard
- Use the FeatureFeedbackWidget wherever you want to display the feedback UI:
FeatureFeedbackWidget(
onSubmit: (FeatureRequest request) {
print('New feature request: ${request.title}');
},
)
copied to clipboard
Example #
Check out the /example
folder for a complete working example.
Additional Information #
- Report bugs on the [issue tracker](TODO: Add your GitHub issues URL)
- Contribute to the package by creating pull requests
- For detailed documentation, visit [the wiki](TODO: Add your GitHub wiki URL)
License #
This project is licensed under the MIT License - see the LICENSE file for details.