Saddam Azy

Results 15 comments of Saddam Azy

wait.... you guys using light theme????

Even on cleanest image, default model fail to detect. This word is "qqqqq" using Times New Roman, and default model detect as "99999". ![image](https://user-images.githubusercontent.com/59659668/195225863-c4029e3f-066c-41c1-af03-8cfbc31a5651.png) Configuration: ```python # Initialize OCR reader...

if it non null, dart will force you to use `required` keyword in implementation class

Yeah its true. Maybe if it use tag property just like hero widget it wil be better

I see. It using Freezed() as default

Even though this looks good. If its related to data or state, I think you should separate UI and logic. Create enum instead, and use switch from that. ```dart child:...

I already add pull request here #306

Here is the UI ```kotlin form(SignInForm::class) { field(SignInForm::email) { OutlinedTextField( modifier = Modifier .fillMaxWidth() .testTag("EmailField"), value = this.state.value?.value.orEmpty(), onValueChange = { Timber.d("Email changed: $it") this.setField(it) }, isError = resultState.value is...

Hi can you replicate my problem? It's like the library validate previous form state. ```kotlin rule.onNode(signInButton).assertIsNotEnabled() rule.onNode(emailField).assertIsNotFocused() rule.onNode(emailField).performClick() rule.onNode(emailField).performTextInput("[email protected]") rule.onNode(emailField).performImeAction() rule.onNode(signInButton).assertIsNotEnabled() rule.onNode(passwordField).assertIsFocused() rule.onNode(passwordField).performTextInput("password") rule.onNode(passwordField).performTextReplacement("") // empty string rule.onNode(passwordField).performImeAction() rule.onNode(signInButton).assertIsEnabled() //...