widget_visibility_detector 1.0.1 widget_visibility_detector: ^1.0.1 copied to clipboard
A new Flutter package can detect when the widget appears or disappears.
widget_visibility_detector #
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'),
],
),
)),
),
)