Hi im using flutter mlkit with firebase to pick up text from image, everything is ok if the language is English , my problem when the text in image is Arabic , the Text Detector
With Firbase Vision add this
FirebaseVisionImage image = FirebaseVisionImage.fromBitmap(bitmap);
FirebaseVisionCloudTextRecognizerOptions options = new FirebaseVisionCloudTextRecognizerOptions.Builder()
.setLanguageHints(Arrays.asList("en", "ar", "hi"))
.build();
you need to define any language for example arabic "ar" and so on the most important thing is to go with cloud recognition and have your key on firebase cloud consol then use it in your app
arabic language work only with cloud no offline (on device)
regards