As the tittle implied, I've got an error message that it says "Bad state: No element The relevant error-causing widget was CustomP...
Tuesday, September 13, 2022
Thursday, January 27, 2022
Dart Null aware assignment operator ??=
Ivan Boginski
January 27, 2022
Here's an example. double width; width = width + 19.0; We can make it short like so is equal to width += 30...
Labels:
DartLang
Saturday, January 15, 2022
save a reference to the ancestor by calling dependOnInheritedWidgetOfExactType()
Ivan Boginski
January 15, 2022
Save a reference to the ancestor by calling dependOnInheritedWidgetOfExactType() in the widget's didChangeDependencies() method. Found t...
Labels:
Flutter
Thursday, January 6, 2022
Accept Bad Certificate Flutter SSL HTTPS
Ivan Boginski
January 06, 2022
Here we declare a new class in the main.dart /// HttpOverrides.global = HttpOverridesSkipCertificate(); class MyHttpOverrides extends Http...
Labels:
Flutter
Saturday, January 1, 2022
Generate Keystore SHA1 Fingerprints Debug and Release Mode
Ivan Boginski
January 01, 2022
Note this is for Windows another OS should be work too just change and adjust folder and the \ to / for Linux and Mac For debug mode do th...
Labels:
Flutter