I am currently working on a project which involves translation, I am building an app using the framework Flutter and the language Dart.
The problem is that I can't figure out how to translate text with my app in dart.
I tried using all sorts of platforms like google translate API, Firebase, Yandex... But I don't have any money which is kind of a problem.
So I tried this https://learn.microsoft.com/fr-fr/azure//cognitive-services/translator/reference/v3-0-translate#request-url but I got this error message {"error":{"code":405000,"message":"The request method is not supported for the requested resource."}}.
Then I tried using a dart package: https://pub.dev/packages/localize_and_translate, it worked, but it's to translate text that you already have in json files and I need to translate text that users will give me.
I also tried to get what was inside one of the google translate requests, to get an answer without having to manually go to the website, when I tried to analyse the request I only got this link : https://fonts.googleapis.com/css?lang=fr&family=Product+Sans%7CRoboto:400,700.
Some help or ideas would definitely be very much appreciated.
Thanks for everything !