React Ape

React Ape

  • Docs
  • Contributing
  • Blog
  • GitHub
  • React

›Components

The Basics

  • Getting Started
  • Learning the Basics
  • Height and Width

Guides

  • Components and APIs
  • Navigation on Apps
  • Custom Components

Contributing

  • How to Contribute

Components

  • Image
  • Text
  • View

APIs

  • Dimensions
  • Platform
  • StyleSheet
  • Navigation

Props

  • Image Style Props
  • Text Style Props
  • View Style Props
Edit

Image

Image

A component to display different types of images on canvas.

This example shows how to display an image at canvas.

import React from "react";
import { Image, View, render } from "react-ape";

class ImageExample extends React.Component {
  render() {
    return (
      <View>
        <Image src="http://raphamorim.io/react-ape/img/logo.svg" />
      </View>
    );
  }
}
← How to ContributeText →
  • Image
Docs
Getting StartedGuidesAPI Reference
Community
Who is Using React-Ape?Twitter
More
BlogGitHubStar React Ape on GitHub
Copyright © 2022 Raphael Amorim