0.1.0 • Published 6 years ago

bs-react-native-material-ui v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

BuckleScript bindings for React Native Material Ui

Status

Not all components got bindings yet, but all should be covered very soon. Check out the source.

Feel free to create an issue or pull request if you find anything missing.

Installation

yarn add bs-react-native-material-ui yarn add react-native-material-ui

Then add react-native-material-ui to bs-dependencies in your bsconfig.json:

{
  "bs-dependencies": ["react-native-material-ui"]
}

Usage

let uiTheme: ReactNativeMaterialUi.ThemeProvider.uiTheme = {
  palette: {
    primaryColor: "#000000"
  }
};

let app = () =>
  <ReactNativeMaterialUi.ThemeProvider uiTheme>
    <View>
      <ReactNativeMaterialUi.ActionButton
          actions=(
            ReactNativeMaterialUi.ActionButton.ShapeAction({
              icon: "done",
              name: "Done",
              label: "Yello"
            })
          )
        />
        
    </View>
  </ReactNativeMaterialUi.ThemeProvider>;

Bindings