suggest_a_feature library

Ready-made Flutter package for collecting suggestions from users.

Suggest a feature is a ready-made module which allows other developers to implement additional menu in their own mobile app where users can share their suggestions about the application in real time, discuss them with others, and vote for each other's suggestions.

Classes

AdminSettings
This class is required to provide Admin information for other users It can be visible in comments
Comment
CreateCommentModel
CreateSuggestionModel
ShadowsCustomPainter
Suggestion
SuggestionAuthor
SuggestionsDataSource
SuggestionsPage
SuggestionsTheme

Enums

SortType
Sorting type values
SuggestionLabel
SuggestionStatus

Typedefs

OnGetUserById = Future<SuggestionAuthor?> Function(String id)
The function has Future<SuggestionAuthor?> return type and takes 1 positional argument id which is a String object.
OnSaveToGalleryCallback = Future<bool?> Function(String url)
The function has Future<bool?> return type and takes 1 positional argument url which is a String object.
OnUploadMultiplePhotosCallback = Future<List<String>?> Function({required int availableNumOfPhotos})
The callback which is invoked after uploading multiple photos.