Semsem-programmer

Results 2 comments of Semsem-programmer

You can read this: [Arabic decode](https://github.com/solid-software/languagetool_textfield/issues/70#issuecomment-1907465503) Maybe it is useful for you.

I solve that by edit (language_tool_client.dart) file as: **replace this line:** json.decode(result.body) as Map, **With:** json.decode(utf8.decode(result.bodyBytes)) as Map, **The Reason** Json response do not work with arabic chars (UTF-8) by...