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

outdated

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.

289
likes
0
points
13.5k
downloads

Publisher

verified publisherwiredash.io

Weekly Downloads

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

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

clock, collection, file, flutter, flutter_localizations, http, http_parser, intl, material_color_utilities, path_provider, shared_preferences

More

Packages that depend on wiredash