1 min readMar 20, 2019
I apologize Mohamed hassan kadri for late response but I missed medium notification.
To have this logs I had to just add print statements into the Element
class in Flutter source code:
/// framework.dart
// Element class
void mount(Element parent, dynamic newSlot) {
print('mount ${parent.widget}');...
}