A set of UI components, in the purpose of introducing Material Design to apps built with React Native, quickly and painlessly.

buttons-mdl
const ColoredRaisedButton = MKButton.coloredButton()
  .withText('BUTTON')
  .withOnPress(() => {
    console.log("Hi, it's a colored button!");
  })
  .build();

...
<ColoredRaisedButton/>