NUIParentWidget constructor

NUIParentWidget(
  1. BuildContext context
)

Implementation

NUIParentWidget(BuildContext context){
  open = (page){
    NUINavigator.push(context, page);
  };
  exit = (){
    NUINavigator.pop(context);
  };
}