You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What - Using pip view get call back(onTapTopWidget) when close the floating view to caller widget
Why - Many times i want to perform my own action when closed the floating view.
Optional solution - of course i can directly use the RawPIPView but i want to use directly PIPView.
Can we modify this PIPView ->
return PIPView(
builder: (context, isFloating) {
When use PIPView like above can we add a function which returns the call back(onTapTopWidget) when pip view floating view is closed?
get call back onTapTopWidget : () {}, // modification i want here
return PIPView(
**onTapTopWidget : () {},** // modification i want here
builder: (context, isFloating) {
pip_view.dar library build function line line 47 to 71
modify this onTapTopWidget: isFloating ? stopFloating : null, from here return call back
What - Using pip view get call back(onTapTopWidget) when close the floating view to caller widget
Why - Many times i want to perform my own action when closed the floating view.
Optional solution - of course i can directly use the RawPIPView but i want to use directly PIPView.
Can we modify this PIPView ->
When use PIPView like above can we add a function which returns the call back(onTapTopWidget) when pip view floating view is closed?
get call back
onTapTopWidget : () {}, // modification i want here
pip_view.dar library build function line line 47 to 71
modify this
onTapTopWidget: isFloating ? stopFloating : null, from here return call back
The text was updated successfully, but these errors were encountered: