@twopm/restack

SwiftUI inspired layout library for React


Keywords
react, flexbox, swift, swiftui, layout, vstack, hstack, typescript, emotion
License
MIT
Install
npm install @twopm/restack@0.1.1

Documentation


Build GitHub top language
GitHub npm npm bundle size


restack is a port of the VStack and HStack concepts from SwiftUI. Simple, composable application layouts.

👁  Live Demo

Install

yarn add @twopm/restack

Usage

import { VStack } from '@twopm/restack'

const App = () => (
  <VStack
    horizontal="center"
    vertical="distribute-edges"
    spacing={10}
  >
    <p>One</p>
    <p>Two</p>
    <p>Three</p>
  </VStack>
)

See the storybook examples for more or view the live demo.