UNPKG

@s20.ai/safecam-360-rn

Version:

A React Native component to view the interior panorama and exterior 360 degree views of a product featuring suppport for hotspots. Compatible with Android and iOS

33 lines (29 loc) 622 B
/* * Copyright © 2022 S20.AI India Pvt. Ltd. * Contact - origin@s20.ai * License - Licensed as per https://docs.s20.ai/license.html */ import types from './types'; export const setCurrentView = data => { return { type: types.VIEW.SET_CURRENT_VIEW, data, }; }; export const setCurrentOrientation = data => { return { type: types.VIEW.SET_CURRENT_ORIENTATION, data, }; }; export const setWidgetsVisible = data => { return { type: types.VIEW.SET_WIDGETS_VISIBILITY, data, }; }; export const clearCurrentView = () => { return { type: types.VIEW.CLEAR_CURRENT_VIEW, }; };