-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Description
Environment
React Native Environment Info:
System:
OS: Windows 10
CPU: x64 Intel(R) Core(TM) i7-6820HQ CPU @ 2.70GHz
Memory: 7.73 GB / 15.88 GB
Binaries:
Yarn: 1.9.4 - C:\Program Files (x86)\Yarn\bin\yarn.CMD
npm: 5.6.0 - C:\Program Files\nodejs\npm.CMD
IDEs:
Android Studio: Version 3.1.0.0 AI-173.4907809
Description
ActivityIndicator is working fine in Android Emulator. But when I installed it on Samsung Galaxy Note 4 it does not show up.
Reproducible Demo
Code:
import React from 'react';
import { View, ActivityIndicator, Text, StyleSheet } from 'react-native';
export default class LoadingStoreScrn extends React.Component {
render() {
return (
Loading
);
}
}
const styles = StyleSheet.create ({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
marginTop: 70
},
activityIndicator: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
height: 80,
}
})