fixle_feedback_flutter 0.0.1
fixle_feedback_flutter: ^0.0.1 copied to clipboard
Fixle's flutter package. Use it to get feedback from clients/teams during app development.
Fixle Flutter #
This is a package to use Fixle on UI of a flutter app.
Fixle provides a platform for mobile app developers, product managers, and designers, to collaborate seamlessly and get feedback on your app development process in real-time.
Features #
- No need to take screenshots of the app screens and email them to your team. Fixle does that for you; you just need to add comments on those screens, and fixle does the rest.
- Go through previous comments and participate in conversations with the team.
- Enable/disable these functionalities for a particular version of this app, with the switch of a button on Fixle Dashboard-> Settings -> Enabled versions.
Some screenshots showing these features:

Features Coming soon: #
- Tag team members
- Login with Google for user identification.
Installation #
For integration, as an app developer you just need to add 2 lines of code. Following are the steps:
- Paste
fixle_flutter_feedback: ^0.0.1underpubspec.yamlof your flutter APP project. - Set up on Fixle.
- Go to Fixle Dashboard (Sign in if not already)
- Go to your project cCreate new project if not already)
- Add the version of your app mentioned in file
pubspec.yaml - Copy api key
- Go to the home widget of your APP project.
- Your home widget is the one which you mention under
MaterialApp(home: HomeWidget()). - Paste this in the build method of Home Widget:
Fixle().showOverlay(context, 'api_key_that_you_copied_above');
- Your home widget is the one which you mention under
-
If you have different routes, mentioned under
MaterialApp(home: HomeWidget(), routes: { '/search': (context) => SearchPage() })then you will have to do this for all these route widgets too (
SearchPagein this example). (Don't worry, there will just be one instance of Fixle utility bar created). -
That's it. When you deploy the app, and change the version, make sure to do step (2.iii) for this new version.
Additional information #
- Apple only supports digits and
.forversionstring that you specify in your pubspec.yaml