0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.