123456789101112131415161718192021222324252627282930313233343536 |
- /**
- * @format
- * @flow
- * @lint-ignore-every XPLATJSCOPYRIGHT1
- */
-
- import React, { Component } from "react";
- import { StyleSheet, Text, View } from "react-native";
- // import * as RNPermissions from "react-native-languages";
-
- type Props = {};
-
- export default class App extends Component<Props> {
- render() {
- return (
- <View style={styles.container}>
- <Text style={styles.welcome}>Example</Text>
- </View>
- );
- }
- }
-
- const styles = StyleSheet.create({
- container: {
- flex: 1,
- justifyContent: "center",
- alignItems: "center",
- backgroundColor: "#F5FCFF",
- },
- welcome: {
- fontSize: 20,
- textAlign: "center",
- margin: 10,
- },
- });
|