How to check Network connection with Ionic React?

1.3k Views Asked by At

I would like to check my Internet connection in my Ionic React application. All what I find on Internet is for Ionic angular. How can I do that ?

2

There are 2 best solutions below

0
Abdes On

If you are using Ionic with Capacitor u can use the @capacitor/network api.

2
Timothy Cuenat On

Ok thanks, I find something else ...

['load', 'online', 'offline'].forEach(function (e) {
    window.addEventListener(e, () => { props.setNetworkState(navigator.onLine ? "online" : "offline") });
  });