@gorhom/bottom-sheet
Version:
A performant interactive bottom sheet with fully configurable options 🚀
16 lines (15 loc) • 426 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isFabricInstalled = isFabricInstalled;
/**
* Checks if the Fabric renderer is installed in the current environment.
*
* @returns {boolean} `true` if Fabric is installed, otherwise `false`.
*/
function isFabricInstalled() {
// @ts-ignore
return global?.nativeFabricUIManager != null;
}
//# sourceMappingURL=isFabricInstalled.js.map
;