wiredash 2.1.1 copy "wiredash: ^2.1.1" to clipboard
wiredash: ^2.1.1 copied to clipboard

Wiredash is an interactive user feedback tool for Flutter apps including Promoter Score.

example/README.md

Wrap your root widget with Wiredash #

Wrap the root widget of your existing app with Wiredash and make sure to fill in the projectId and SDK secret from the Wiredash Console > Your project > Settings > General Settings.

import 'package:flutter/material.dart';
import 'package:wiredash/wiredash.dart';

class MyApp extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Wiredash(
      projectId: 'YOUR-PROJECT-ID',
      secret: 'YOUR-SECRET',
      child: MaterialApp(
        // Your Flutter app is basically Wiredash's direct child.
        // This can be a MaterialApp, WidgetsApp or whatever widget you like.
      ),
    );
  }
}

Launch the feedback flow #

From anywhere in your app, call the Wiredash.show() method to launch Wiredash:

Wiredash.of(context).show(inheritMaterialTheme: true);

That's already it. Yes, it's really that easy. Also works on all platforms.