a react-based lib to create quick ui in flutterish way
In my opinion, creating UI in Flutter famerwork is really quick and simple. What's more the code is really clear when it comes to investigating simple layout like Padding or Aligment. Most important, it's just fun, so why not using flutter way to build UI in React.
npm install --save react-flutterish
import { Padding } from "react-flutterish";
const Component = () => (
<Padding val={20}>
<SomeComponent />
</Padding>
);
MIT © Chojecki