CaiJingLong / flutter_load_widget

Apache License 2.0
35 stars 13 forks source link

Flutter Inspector doesn't work after adding this package #6

Closed zhanghuanchong closed 4 years ago

zhanghuanchong commented 5 years ago

Code structure: image

Flutter version: 1.9.1 IDE: Android Studio

Once I enabled the "Select Widget Mode", the app will restart, which caused I cannot inspect the widgets on the previous page.

Can you help? Thanks in advance.

p02diada commented 4 years ago

Same error here, any news about it?

CaiJingLong commented 4 years ago

Try to use next code to include it:

 MaterialApp(
      builder: (context, widget) {
        return LoadingProvider(
          child: widget,
        );
      },
    );
p02diada commented 4 years ago

@CaiJingLong answer works. It should be the main example