enx-uikit-react-native
Version:
It is a react native component for Enablex users.
19 lines (18 loc) • 755 B
JavaScript
import { StyleSheet } from 'react-native';
const styles = StyleSheet.create({
floatingButton: {
position: 'absolute',
top: 10, // Adjust the top position as needed
left: 10, // Adjust the left position as needed
backgroundColor: 'transparent', // Button background color
padding: 10, // Button padding
borderRadius: 25, // Button border radius
elevation: 5, // Shadow for Android
shadowColor: '#000', // Shadow color for iOS
shadowOffset: { width: 0, height: 2 }, // Shadow offset for iOS
shadowOpacity: 0.8, // Shadow opacity for iOS
shadowRadius: 2, // Shadow radius for iOS
zIndex: 1000, // Ensure the button is on top
},
});
export { styles }