How to manage WebView cookies?

Is it possible to view/edit/delete cookies from the Expo WebView?

I would like to build a WebView with logout button, deleting all cookies.

snack.expo.io / v41.0.0 / Android

At least I found a way to delete all cookies in another post:

import RCTNetworking from 'react-native/Libraries/Network/RCTNetworking';

RCTNetworking.clearCookies(() => {});

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.