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

View

View

Most fundamental component, view contains the components inside of itself, it can also nest other views.

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

class ViewExample extends React.Component {
  render() {
    return <View style={{ backgroundColor: "red" }} />;
  }
}
← TextDimensions →
  • View
Docs
Getting StartedGuidesAPI Reference
Community
Who is Using React-Ape?Twitter
More
BlogGitHubStar React Ape on GitHub
Copyright © 2022 Raphael Amorim