widget_lifecycle 1.4.0 copy "widget_lifecycle: ^1.4.0" to clipboard
widget_lifecycle: ^1.4.0 copied to clipboard

lifecycle for widget

inspired by android.lifecycle

Getting Started #

final controller = LifecycleController();
LifecycleAware(
    key: ValueKey("id"),
    controller: controller,
    onShow: () {
      debugPrint("onShow");
    },
    onHide: (){
    
    },
    showVisibilityThreshold: 0.5,
    hideVisibilityThreshold: 0.1,
    child: xxxx,
);


controller.trigger();

// resumed
controller.state == LifecycleState.resumed;