UNPKG

react-native-sms-verifycode-fix

Version:

A component for entering a set of SMS verification codes for react-native, Compatible for Android and iOS

24 lines (19 loc) 418 B
/* * @Author: edmond * @Date: 2018-03-20 17:48:16 * @Last Modified by: edmond * @Last Modified time: 2018-03-22 09:35:31 */ import { StyleSheet } from 'react-native'; import { getScreenWidth } from './util'; const styles = StyleSheet.create({ container: { width: getScreenWidth(), }, hiddenTextInput: { width: 0, height: 0, backgroundColor: 'transparent', }, }); export default styles;