Suppose I have two Widget A and B. A listens for event changes. And Event type is Connectivity status.
A --> One Widget (separate screen)
B --> Another Widget (separate screen)
Event Type
|
--> INTERNET_CONNECTED
--> INTERNET_NOT_CONNECTED
I want to push and pop B widget depending on the event triggered inside A. If event is INTERNET_NOT_CONNECTED then push B and if INTERNET_CONNECTED then pop B. Can someone suggest me how can i achieve it. Thanks...