Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JulianBissekkou/8128191eaafc468faf430e6328f32491 to your computer and use it in GitHub Desktop.
Save JulianBissekkou/8128191eaafc468faf430e6328f32491 to your computer and use it in GitHub Desktop.
StreamBuilder<String>(
stream: _viewModel.outputErrorText,
builder: (context, snapshot) {
return MyTextField(
controller: controller,
hintText: "Email",
errorText: snapshot.data);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment