0.1.1 • Published 6 years ago

rn-flex-view v0.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

React-Native FlexView

Use flexbox layout in React-Native with autocomplete.

Supported props:

{
  children: any;
  stretch?: boolean;
  alignCenter?: boolean;
  alignStart?: boolean;
  alignEnd?: boolean;
  baseline?: boolean;
  justifyStart?: boolean;
  justifyEnd?: boolean;
  justifyCenter?: boolean;
  spaceBetween?: boolean;
  spaceAround?: boolean;
  style?: Object;
  rowDirection?: boolean;
  rowReverseDirection?: boolean;
  columnDirection?: boolean;
  columnReverseDirection?: boolean;
  wrap?: boolean;
  wrapReverse?: boolean;
  flex?: string;
  paddingBetween?: string;
  marginTop?: string;
  marginBottom?: string;
  marginLeft?: string;
  marginRight?: string;
  paddingTop?: string;
  paddingBottom?: string;
  paddingLeft?: string;
  paddingRight?: string;
}