All Projects → nachos-ui → Nachos Ui

nachos-ui / Nachos Ui

Licence: mit
Nachos UI is a React Native component library.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to Nachos Ui

Ui7kit
Backport flat-style UIKit from iOS7 to iOS5+
Stars: ✭ 1,682 (-17.43%)
Mutual labels:  uikit
Tjpyingke
仿写映客直播,目前已完成部分功能,后续会继续完善 ----[最新添加礼物列表及礼物动画]
Stars: ✭ 146 (-92.83%)
Mutual labels:  uikit
Uiadmin
UIAdmin - UI Kit 3 Responsive Admin Panel
Stars: ✭ 155 (-92.39%)
Mutual labels:  uikit
Instagramactivityindicator
Activity Indicator similar to Instagram's.
Stars: ✭ 138 (-93.23%)
Mutual labels:  uikit
Dckit
Set of iOS controls with useful IBInspectable properties. Written on Swift.
Stars: ✭ 144 (-92.93%)
Mutual labels:  uikit
Mhsoftui
Extension for Neumorphic Soft UI effect in Swift
Stars: ✭ 151 (-92.59%)
Mutual labels:  uikit
Swiftui Visual Effects
View modifiers that wrap UIVisualEffectView, with environment integration.
Stars: ✭ 137 (-93.27%)
Mutual labels:  uikit
Collectionviewslantedlayout
A CollectionView Layout displaying a slanted cells
Stars: ✭ 2,029 (-0.39%)
Mutual labels:  uikit
Notus Svelte
Notus Svelte: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 144 (-92.93%)
Mutual labels:  uikit
Notus Nextjs
Notus NextJS: Free Tailwind CSS UI Kit and Admin
Stars: ✭ 152 (-92.54%)
Mutual labels:  uikit
Gaikan
Declarative view styling in Swift. Inspired by CSS modules.
Stars: ✭ 139 (-93.18%)
Mutual labels:  uikit
Hana Ui
🌻A react UIKit with nijigen style.
Stars: ✭ 144 (-92.93%)
Mutual labels:  uikit
Styled Bootstrap
💅🏻 A styled-component implementation of Bootstrap
Stars: ✭ 154 (-92.44%)
Mutual labels:  uikit
Now Ui Kit
Now UI Kit Bootstrap 4 - Designed by Invision. Coded by Creative Tim
Stars: ✭ 1,705 (-16.3%)
Mutual labels:  uikit
Crosswindow
💻📱 A cross platform system abstraction library written in C++ for managing windows and performing OS tasks.
Stars: ✭ 155 (-92.39%)
Mutual labels:  uikit
Bezierpath Polygons
Adds a convenience initalizer to UIBezierPath for generating n-sided regular polygon paths – with rounded corners support – in Swift!
Stars: ✭ 138 (-93.23%)
Mutual labels:  uikit
Tangerine
Swift µframework for fetching images 🍊
Stars: ✭ 149 (-92.69%)
Mutual labels:  uikit
Upcomingmovies
Movies app written in Swift 5 using the TMDb API and demonstrating Clean Architecture, Dependency Injection, MVVM and Coordinators.
Stars: ✭ 160 (-92.15%)
Mutual labels:  uikit
React Native Web Hooks
Hooks for React Native web and Expo
Stars: ✭ 157 (-92.29%)
Mutual labels:  react-native-web
Calendar Ios
Calendar View
Stars: ✭ 154 (-92.44%)
Mutual labels:  uikit

Nachos UI

Build Status

Intro

Nachos UI is a React Native component library. Read more about how we built it on Medium.

Features:

Getting started

Requires React Native 0.40 and higher.

$ npm install --save nachos-ui  

OR

$ yarn add nachos-ui

The ThemeProvider component should be set at the highest level of your app. If it is not, Nachos UI components will NOT render.

import { ThemeProvider } from "nachos-ui";

export default (App = () => (
  <ThemeProvider>
    <RestOfYourApp />
  </ThemeProvider>
));
import React from 'react'
import { View } from 'react-native'
import { Button } from 'nachos-ui'

const App = () => {
  return (
    <View>
    	<Button>Button</Button>
    </View>
  )
}

Documentation

Visit the documentation at https://avocode.com/nachos-ui/docs/ with technical information about each component.

Contributing

Contributions are always welcome! Before contributing, please read our Code Of Conduct.

Read Contributing.

Developers

To play with Nachos UI locally first clone the repository:

$ git clone [email protected]:avocode/nachos-ui.git

Ideally use Yarn to install your dependencies. It's fast and consistent:

$ yarn install

To run the iOS simulator run:

$ yarn run start

To run the Web version:

$ yarn run start:web

License

Nachos UI is open source and released under the MIT License.

Thanks!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].