widget_visibility_detector

Creator: coderz1093

Last updated:

Add to Cart

Description:

widget visibility detector

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'),
],
),
)),
),
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.