Skip to content

Commit f46bbd4

Browse files
authored
Update README.md
1 parent c5efbb2 commit f46bbd4

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

README.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,20 @@ Provide a way to hide the feedback panel by calling `BetterFeedback.of(context)
7676

7777
### Upload feedback
7878

79-
To upload the feedback you should use, for example, a [MultipartRequest](https://pub.dev/documentation/http/latest/http/MultipartRequest-class.html).
79+
Depending on your use case there are wide variety of solutions.
80+
These are a couple suggestions:
81+
82+
| Target | Notes |
83+
|--------|---------|
84+
| Upload to a server | To upload the feedback to a server you shoudl use for example a [MultipartRequest](https://pub.dev/documentation/http/latest/http/MultipartRequest-class.html). |
85+
| GitLab Issue | GitLab has a [REST API to create issues](https://docs.gitlab.com/ee/api/issues.html) |
86+
| Share via platform share dialog | [share on pub.dev](https://pub.dev/packages/share) |
87+
| Firebase | [Firestore](https://pub.dev/packages/cloud_firestore), [Cloud Storage](https://pub.dev/packages/firebase_storage), [Database](https://pub.dev/packages/firebase_database)
88+
| Jira | Jira has a [REST API to create issues and upload files](https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#creating-an-issue-examples) |
89+
| Trello | Trello has a [REST API to create issues and upload files](https://developer.atlassian.com/cloud/trello/rest/api-group-actions/) |
90+
| E-Mail | You can use the users email client like [in the sample app](https://github.com/ueman/feedback/blob/master/example/lib/main.dart) to send feedback to yourself using the [flutter_email_sender](https://pub.dev/packages/flutter_email_sender) plugin.
91+
92+
If you have sample code on how to upload it to a platform, I would appreciate a PR to the example app.
8093

8194
### 🎨 Configuration & customization
8295

@@ -127,25 +140,10 @@ in the screenshot.
127140
information upon hitting an error.
128141
- Use it as an internal quality control tool
129142

130-
### Where to share the users feedback?
131-
Depending on your use case there are wide variety of solutions.
132-
These are a couple suggestions:
133-
134-
| Target | Notes |
135-
|--------|---------|
136-
| GitLab Issue | GitLab has a [REST API to create issues](https://docs.gitlab.com/ee/api/issues.html) |
137-
| Share via platform share dialog | [share on pub.dev](https://pub.dev/packages/share) |
138-
| Firebase | [Firestore](https://pub.dev/packages/cloud_firestore), [Cloud Storage](https://pub.dev/packages/firebase_storage), [Database](https://pub.dev/packages/firebase_database)
139-
| Jira | Jira has a [REST API to create issues and upload files](https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#creating-an-issue-examples) |
140-
| Trello | Trello has a [REST API to create issues and upload files](https://developer.atlassian.com/cloud/trello/rest/api-group-actions/) |
141-
| E-Mail | You can use the users email client like [in the sample app](https://github.com/ueman/feedback/blob/master/example/lib/main.dart) to send feedback to yourself using the [flutter_email_sender](https://pub.dev/packages/flutter_email_sender) plugin.
142-
143-
If you have sample code on how to upload it to different platforms, I would appreciate a PR to the example app.
144143

145144
## Known Issues and limitations
146145

147-
- Platform views are invisible in screenshots (like [webview](https://pub.dev/packages/webview_flutter) or [Google Maps](https://pub.dev/packages/google_maps_flutter))
148-
- Flutter for web is currently not supported, see this [issue](https://github.com/ueman/feedback/issues/13)
146+
- Platform views are invisible in screenshots (like [webview](https://pub.dev/packages/webview_flutter) or [Google Maps](https://pub.dev/packages/google_maps_flutter)). For further details, see this [Flutter issue](https://github.com/flutter/flutter/issues/25306).
149147

150148
## 📣 Author
151149

0 commit comments

Comments
 (0)