Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

undefined is not an object (evaluating '_reactNative.Stylesheet.create') [closed]

I am getting is pesky error 'undefined is not an object (evaluating '_reactNative.Stylesheet.create')' as can be seen in the screenshot as well.

Following is the code I am using;

import React, {Component} from 'react';
import {Text, Stylesheet} from 'react-native';
import {Content, Container, Body, Title} from 'native-base';
import GoogleStaticMap from 'react-native-google-static-map';

export default class Contact extends Component {
  render() {
    return (
      <GoogleStaticMap
      style={styles.map}
      latitude={'32.064171'}
      longitude={'34.7748068'}
      zoom={13}
      size={{
      width: 300,
      height: 550
    }}
    />);
  }
}

const styles = Stylesheet.create({
  map: {
    width: 300,
    height: 550
  }
});

module.export = Contact;
like image 993
Taimoor Khan Avatar asked Jul 02 '17 12:07

Taimoor Khan


1 Answers

Use StyleSheet with upper case on Sheet.

import {Text, StyleSheet} from 'react-native';
...
const styles = StyleSheet.create({
like image 192
Moti Azu Avatar answered Sep 28 '22 17:09

Moti Azu