index.tsx 411 B

1234567891011121314151617
  1. import { View, Text } from 'react-native';
  2. export default function ChargingScreen() {
  3. return (
  4. <View
  5. style={{
  6. flex: 1,
  7. flexDirection: 'column',
  8. justifyContent: 'center',
  9. alignItems: 'center',
  10. paddingHorizontal: 4
  11. }}
  12. >
  13. <Text></Text>
  14. </View>
  15. );
  16. }