graemep-nz
graemep-nz
[email_form.zip](https://github.com/firebase/flutterfire/files/9215859/email_form.zip)
I added some debug code and it shows that CreateState is getting called for the stateful widget that holds the text editing controllers when the screen is rotated. This is...
You can do it like this - set showAuthActionSwitch false. login_view.dart writes the text if showAuthActionText is true. ``` return SignInScreen( showAuthActionSwitch: false, ```
I've found where the code gets stuck - this call is not returning - what is it doing? final linkData = await FirebaseDynamicLinks.instance.onLink.first; The code below prints "pending" but never...
For this code, onlinkxx onlink2 and onlink3 all get printed but "first" and "first2" never appear. ``` @override Stream get onLink { print("onlinkxx"); var stgp1 = _onLinkController.stream; print("onlink2"); Future.delayed(Duration(milliseconds: 1000),...
and if I set a breakpoint and single step into the call to "first" it doesn't go to the first function instead it goes to the exit point of the...
@tneotia
print the values of maxWidth and maxHeight - they're probably infinity,
I don't know what HtmlElementView is. What happens if you do this return SizedBox( height: height - 100, width: width - 100,
I'm not sure what you're doing. Maybe use flutter_widget_from_html (HtmlWidget) instead of the embedded thing. So is the idea of the embedded thing so the browser interprets the html meaning...