Freezing of the interface when using the "jszip" library in a React Native (Expo) project
import JSZip from "jszip"; const createArchive = async() => { // Some code const zip = new JSZip(); const data = getExampleData(); zip.file("example.json", data); const zipContent = await zip.generateAsync( { type: "base64" }, (metadata) => { setCreationProgress(metadata.percent); // Set a…