Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-material-ui

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-material-ui

React Native Material Design Components

  • 0.4.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
295
decreased by-17.6%
Maintainers
1
Weekly downloads
 
Created
Source

React Native Material Design

npm Dependency Status GitHub issues GitHub license

React Native components which implement Material Design.

This repository has been forked from the react-native-material-design project started by @Ehesp.

Supported is React Native 0.16+

Getting Started

npm i react-native-material-ui --save

Copy the MaterialIcons font file from react-native-vector-icons to your local working directory:

./node_modules/react-native-vector-icons/Fonts/MaterialIcons.ttf -> ./android/app/src/main/assets/fonts.

Usage

Import any required components into your project, for example:

import React from 'react-native';
import { Button } from 'react-native-material-ui';

class ReactNativeComponent extends React.Component {
  render() {
    return <Button text="Submit" />
  }
}

You may need to restart your packager in order for the icons to render.

Examples

Example 1 Example 2 Example 3

Components

This library needs better documentation of components. For now, in this section are some gifs and pictures.

  • [Avatar] (#avatar)
  • [Button] (#button)
  • [Checkbox] (#checkbox)
  • [Icon] (#icon)
  • [List item] (#list-item)
  • [Radio button] (#radio-button)
  • [Card] (#card)
  • Drawer
  • Dropdown menu
  • Toolbar

Toolbar

Toolbar has the search feature!

<Toolbar
  searchable={{
    onChangeText: () => { },
    placeholder: 'Search'
  }}
/>

![Toolbar] (https://raw.githubusercontent.com/xotahal/react-native-material-ui-demo-app/master/resources/toolbar/searchable.gif "Searchable toolbar")

Dropdown menu

You can use dropdown menu on Toolbar and ListItem. You just have to define menuActions. The onPress function returns result (either 'itemPressed' or 'dismissed') and index of item in list (0 for 'First', 1 for 'Second' in these examples).

<Toolbar
  menuActions={{
    labels: ['First', 'Second'],
    onPress: (result, index) => { }
  }}
/>
<ListItem
  menuActions={{
    labels: ['First', 'Second'],
    onPress: (result, index) => { }
  }}
/>

![Dropdown] (https://raw.githubusercontent.com/xotahal/react-native-material-ui-demo-app/master/resources/dropdown/dropdown.gif)

Drawer with account style header

![Drawer] (https://raw.githubusercontent.com/xotahal/react-native-material-ui-demo-app/master/resources/drawer/drawer.gif)

Keywords

FAQs

Package last updated on 14 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc