fixle_feedback_flutter 0.0.2 copy "fixle_feedback_flutter: ^0.0.2" to clipboard
fixle_feedback_flutter: ^0.0.2 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 in a flutter based app.

Fixle provides a platform for your team of mobile app developers, and product owners, to exchange feedback seamlessly during the app development phase in real-time.

Features #

  1. A user-friendly Fixle utility bar appears over your app.

    app_bar.png

  2. The utility bar provides ability to add comments on app screens (by pressing app_bar_plus_sign.png). No need to take screenshots of the app screens and email them.

    clip make comment short.gif

  3. Go through previous comments and participate in conversations with the team, on the app itself, or on the Fixle Dashboard

    showing a thread 2.png showing a thread.png

  4. Enable/disable these functionalities for a particular version of this app on Fixle Dashboard-> Settings -> Enabled versions.

    add version_1.gif This flexibility means you (developer) can use Fixle during the development process and then turn it off when the app is ready for public release.

Features Coming soon: #

  1. Tag team members
  2. 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:

  1. Paste fixle_flutter_feedback: ^0.0.1 under pubspec.yaml of your flutter APP project.
  2. Set up on Fixle.
    1. Go to Fixle Dashboard (Sign in if not already)
    2. Go to your project cCreate new project if not already)
    3. Add the version of your app mentioned in file pubspec.yaml
    4. Copy api key
  3. You will need to add fixle to your pubspec.yaml
    dependencies:
     flutter:
       sdk: flutter
     fixle_feedback_flutter: 0.0.1 # use the latest version found on pub.dev
    
  4. Go to the home widget of your APP project.
    1. Your home widget is the one which you mention under MaterialApp(home: HomeWidget()).
    2. Paste this in the build method of Home Widget:
      Fixle().showOverlay(context, 'api_key_that_you_copied_above');
      
  1. 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 (SearchPage in this example). (Don't worry, there will just be one instance of Fixle utility bar created).

  2. 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 #

  1. Apple only supports digits and . for version string that you specify in your pubspec.yaml
2
likes
110
pub points
0%
popularity

Publisher

verified publisherfixle.dev

Fixle's flutter package. Use it to get feedback from clients/teams during app development.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

dio, dsquare_dart_utils, flutter, logger, native_screenshot_ext, package_info_plus, uuid

More

Packages that depend on fixle_feedback_flutter