loading_css.js 260 B

12345678910111213
  1. import React from 'react';
  2. import {StyleSheet} from 'react-native';
  3. const loading_css = StyleSheet.create({
  4. //通用Loading样式
  5. spinnerTextStyle: {
  6. color: '#FFF',
  7. justifyContent: 'center',
  8. zIndex: 9999,
  9. },
  10. });
  11. export default loading_css;