MovieInfo.js 587 Bytes
import React, { Component } from "react";
import { StyleSheet, Text, View, StatusBar } from "react-native";

export default class MovieRankingTab extends Component {
  return() {
    <View style={styles.container}>
      <StatusBar barStyle="dark-content" />
      <Text style={styles.text}>Getting the current weather</Text>
    </View>;
  }
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: "flex-end",
    paddingHorizontal: 30,
    paddingVertical: 100,
    backgroundColor: "#FDF6AA"
  },
  text: {
    color: "#2c2c2c",
    fontSize: 30
  }
});