HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.2. Click to read the latest docs for v12.0.0.

Showing the Feature Requests List

Described here is how to invoke the list of feature requests inside your app.

The following method can be used to display the Feature Requests page to your users. Once you display the page, your users can submit new feature requests, add comments, and up-vote other feature requests.

cordova.plugins.featureRequests.show(
            true,
            function () {
                console.log('showFeatureRequests successfully!');
            },
            function (error) {
                console.log('Error: showFeatureRequests - ' + error);
            }
        );
3114

This is what the list of in-app feature requests looks like.

🚧

When to Show Feature Requests

In order to get the feature requests page to show reliably, the above API should be linked with an action inside your application, such as the press of a button.


What’s Next

Learn how to efficiently find your way through each feature request. You can also customize design elements to match your app's colors.