UNPKG

react-native-material-elements

Version:

React native material elements is a sophisticated UI library crafted to enhance your React Native development workflow. Designed for simplicity and elegance, nex-ui provides a rich collection of components and utilities to effortlessly create polished mob

6 lines (5 loc) 183 B
export function generateUniqueId() { const timestamp = Date.now().toString(36); const randomStr = Math.random().toString(36).substr(2, 5); return timestamp + '-' + randomStr; }