Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 367 Bytes

File metadata and controls

18 lines (14 loc) · 367 Bytes

react-native-app-helpers/Aligned

A React component which fills its container and aligns its children horizontally and vertically.

Usage

import { Aligned } from "react-native-app-helpers";

const ExampleScreen = () => (
  <Aligned horizontally="left" vertically="top">
    <Text>
      This is aligned to the top left.
    </Text>
  </Aligned>
);