widget_visibility_detector 1.0.1 copy "widget_visibility_detector: ^1.0.1" to clipboard
widget_visibility_detector: ^1.0.1 copied to clipboard

A new Flutter package can detect when the widget appears or disappears.

widget_visibility_detector Build #

A new Flutter package can detect when the widget appears or not.

Getting Started #

WidgetVisibilityDetector(
      onAppear: () {
        print('tab1 onAppear');
      },
      onDisappear: () {
        print('tab1 onDisappear');
      },
      child: Scaffold(
        appBar: AppBar(),
        body: Center(
            child: Container(
          child: Column(
            mainAxisSize: MainAxisSize.min,
            children: [
              Text('tab1'),
            ],
          ),
        )),
      ),
    )
8
likes
120
pub points
84%
popularity

Publisher

verified publishertbm98.dev

A new Flutter package can detect when the widget appears or disappears.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, visibility_detector

More

Packages that depend on widget_visibility_detector