Convert Figma logo to code with AI

jd-opensource logotaro-ui

一款基于 Taro 框架开发的多端 UI 组件库

4,614
748
4,614
557

Top Related Projects

35,942

开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/

Essential UI blocks for building mobile web apps.

轻量、可靠的小程序 UI 组件库

:dog: 一套组件化、可复用、易扩展的微信小程序 UI 组件库

一套高质量的微信小程序 UI 组件库

15,142

A UI library by WeChat official design team, includes the most useful widgets/modules.

Quick Overview

Taro UI is an open-source UI component library for Taro, a cross-platform framework for building applications that run on multiple platforms including WeChat Mini Program, H5, and React Native. It provides a set of high-quality components that follow the WeChat Mini Program specifications and can be easily integrated into Taro projects.

Pros

  • Comprehensive set of UI components tailored for Taro applications
  • Cross-platform compatibility, supporting WeChat Mini Program, H5, and React Native
  • Consistent design following WeChat Mini Program specifications
  • Active development and community support

Cons

  • Limited customization options compared to more flexible UI libraries
  • Primarily focused on WeChat Mini Program aesthetics, which may not suit all design needs
  • Learning curve for developers new to Taro ecosystem
  • Some components may have performance issues in complex applications

Code Examples

  1. Using a basic button component:
import { AtButton } from 'taro-ui'

const MyComponent = () => {
  return (
    <AtButton type='primary' onClick={() => console.log('Clicked!')}>
      Click me
    </AtButton>
  )
}
  1. Implementing a form with input and switch components:
import { AtForm, AtInput, AtSwitch } from 'taro-ui'

const MyForm = () => {
  const [name, setName] = useState('')
  const [isChecked, setIsChecked] = useState(false)

  return (
    <AtForm>
      <AtInput
        name='name'
        title='Name'
        type='text'
        placeholder='Enter your name'
        value={name}
        onChange={(value) => setName(value)}
      />
      <AtSwitch
        title='Enable feature'
        checked={isChecked}
        onChange={(value) => setIsChecked(value)}
      />
    </AtForm>
  )
}
  1. Creating a modal dialog:
import { AtModal, AtModalHeader, AtModalContent, AtModalAction } from 'taro-ui'

const MyModal = ({ isOpen, onClose }) => {
  return (
    <AtModal isOpened={isOpen}>
      <AtModalHeader>Modal Title</AtModalHeader>
      <AtModalContent>
        This is the modal content.
      </AtModalContent>
      <AtModalAction>
        <Button onClick={onClose}>Close</Button>
      </AtModalAction>
    </AtModal>
  )
}

Getting Started

To use Taro UI in your Taro project, follow these steps:

  1. Install Taro UI:
npm install taro-ui
  1. Import the components and styles in your Taro app:
import { AtButton } from 'taro-ui'

// Import the base styles
import 'taro-ui/dist/style/index.scss'

const App = () => {
  return (
    <View>
      <AtButton type='primary'>Hello Taro UI</AtButton>
    </View>
  )
}
  1. Configure your Taro project to support SASS by adding the following to your config/index.js:
mini: {
  postcss: {
    pxtransform: {
      enable: true,
      config: {}
    },
    url: {
      enable: true,
      config: {
        limit: 1024
      }
    },
    cssModules: {
      enable: false,
      config: {
        namingPattern: 'module',
        generateScopedName: '[name]__[local]___[hash:base64:5]'
      }
    }
  }
}

Competitor Comparisons

35,942

开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/

Pros of Taro

  • More comprehensive framework for cross-platform development
  • Larger community and ecosystem with better long-term support
  • Supports multiple UI libraries and frameworks

Cons of Taro

  • Steeper learning curve due to its extensive features
  • Potentially heavier and more complex for simple projects
  • May require more configuration and setup time

Code Comparison

Taro component usage:

import Taro, { Component } from '@tarojs/taro'
import { View, Text } from '@tarojs/components'

class Index extends Component {
  render () {
    return (
      <View className='index'>
        <Text>Hello, World!</Text>
      </View>
    )
  }
}

Taro UI component usage:

import { AtButton } from 'taro-ui'

<AtButton type='primary' onClick={this.handleClick}>
  I'm a button
</AtButton>

Summary

Taro is a more comprehensive framework for cross-platform development, offering support for multiple UI libraries and frameworks. It has a larger community and ecosystem, which can be beneficial for long-term projects. However, it may have a steeper learning curve and require more setup time compared to Taro UI.

Taro UI, on the other hand, is specifically designed for Taro and provides a set of UI components out of the box. It might be easier to get started with for simpler projects but may have limitations in terms of customization and flexibility compared to the full Taro framework.

Essential UI blocks for building mobile web apps.

Pros of Ant Design Mobile

  • More comprehensive component library with a wider range of UI elements
  • Better documentation and examples for developers
  • Larger community and more frequent updates

Cons of Ant Design Mobile

  • Larger bundle size, which may impact performance on mobile devices
  • Steeper learning curve due to more complex API and configuration options
  • Less flexibility for customization compared to Taro UI

Code Comparison

Ant Design Mobile:

import { Button } from 'antd-mobile'

const MyComponent = () => (
  <Button color='primary' size='large'>
    Click me
  </Button>
)

Taro UI:

import { AtButton } from 'taro-ui'

const MyComponent = () => (
  <AtButton type='primary' size='normal'>
    Click me
  </AtButton>
)

Both libraries offer similar component usage, but Ant Design Mobile provides more customization options out of the box. Taro UI's syntax is slightly simpler, which may be preferable for smaller projects or developers new to React-based mobile development.

Ant Design Mobile is better suited for larger, more complex applications that require a wide range of UI components and consistent design language. Taro UI, on the other hand, is ideal for simpler projects or those specifically targeting Taro framework-based applications with a focus on lightweight and easy-to-use components.

轻量、可靠的小程序 UI 组件库

Pros of Vant Weapp

  • More comprehensive component library with over 70 components
  • Better documentation and examples for each component
  • Faster update cycle and more active community support

Cons of Vant Weapp

  • Limited to WeChat Mini Program development, less versatile than Taro UI
  • Steeper learning curve due to more complex component structure
  • Larger bundle size, which may impact mini program performance

Code Comparison

Vant Weapp button component usage:

<van-button type="primary" size="small">Button</van-button>

Taro UI button component usage:

<AtButton type='primary' size='small'>Button</AtButton>

Both libraries offer similar component APIs, but Vant Weapp uses a more native WeChat Mini Program approach, while Taro UI follows a React-like syntax.

Vant Weapp provides a wider range of components and more detailed documentation, making it a strong choice for WeChat Mini Program development. However, Taro UI offers cross-platform compatibility and a more familiar React-like development experience.

Developers should consider their specific project requirements, target platforms, and team expertise when choosing between these two UI libraries.

:dog: 一套组件化、可复用、易扩展的微信小程序 UI 组件库

Pros of wux-weapp

  • Larger component library with more UI elements and widgets
  • Designed specifically for WeChat Mini Programs, offering better integration
  • More frequent updates and active community support

Cons of wux-weapp

  • Limited cross-platform compatibility compared to Taro UI
  • Steeper learning curve due to more complex API and customization options
  • Less extensive documentation and examples available

Code Comparison

wux-weapp:

<wux-button size="default" type="positive">Default</wux-button>
<wux-input label="Name" placeholder="Enter your name" />
<wux-calendar />

Taro UI:

<AtButton type="primary" size="normal">Default</AtButton>
<AtInput name="value" title="Name" type="text" placeholder="Enter your name" />
<AtCalendar />

Both libraries offer similar components, but wux-weapp tends to have more specific naming conventions and a wider range of customization options. Taro UI's syntax is more aligned with React and Taro framework conventions, making it easier for developers familiar with those technologies to adopt.

While wux-weapp provides a richer set of components tailored for WeChat Mini Programs, Taro UI offers better cross-platform compatibility and integration with the Taro framework. The choice between the two depends on the specific requirements of your project and the target platforms you aim to support.

一套高质量的微信小程序 UI 组件库

Pros of iview-weapp

  • Specifically designed for WeChat Mini Program development
  • Lightweight and focused on WeChat-specific components
  • Easier learning curve for developers familiar with WeChat ecosystem

Cons of iview-weapp

  • Limited to WeChat Mini Program development, less versatile than Taro UI
  • Smaller community and potentially slower updates compared to Taro UI
  • Less extensive documentation and examples

Code Comparison

iview-weapp:

<i-button type="primary" bind:click="handleClick">Click me!</i-button>

Taro UI:

import { AtButton } from 'taro-ui'

<AtButton type='primary' onClick={this.handleClick}>Click me!</AtButton>

Summary

iview-weapp is tailored for WeChat Mini Program development, offering a lightweight solution with WeChat-specific components. It's ideal for developers focused solely on the WeChat ecosystem. However, it lacks the versatility and cross-platform capabilities of Taro UI.

Taro UI, being part of the larger Taro framework, provides a more comprehensive solution for developing across multiple platforms, including WeChat Mini Programs, H5, and React Native. It offers a wider range of components and better documentation but may have a steeper learning curve for developers new to React-based frameworks.

The choice between these libraries depends on the project requirements, target platforms, and the development team's expertise.

15,142

A UI library by WeChat official design team, includes the most useful widgets/modules.

Pros of weui-wxss

  • Officially maintained by Tencent, ensuring compatibility with WeChat Mini Programs
  • Larger community and more extensive documentation
  • Closer adherence to WeChat's design guidelines

Cons of weui-wxss

  • Limited to WeChat Mini Program development
  • Less flexibility for customization compared to Taro UI
  • Fewer advanced components and features

Code Comparison

weui-wxss:

.weui-btn {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
  padding-right: 14px;
}

Taro UI:

import { AtButton } from 'taro-ui'

<AtButton type='primary' size='normal'>
  Button
</AtButton>

Summary

weui-wxss is ideal for developers focusing solely on WeChat Mini Programs, offering a native look and feel. It's well-documented and widely supported but lacks cross-platform capabilities.

Taro UI, on the other hand, provides a more versatile solution for cross-platform development, including React Native and H5. It offers more advanced components and greater customization options but may require additional setup for WeChat Mini Programs.

The choice between the two depends on the project's scope, target platforms, and the developer's familiarity with React and Taro framework. weui-wxss is more straightforward for WeChat-specific projects, while Taro UI offers greater flexibility for multi-platform development.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Taro UI

NPM NPM Downloads david-dm License

一款基于 Taro 框架开发的多端 UI 组件库

特性

  • 基于 Taro 开发 UI 组件
  • 一套组件可以在 微信小程序,支付宝小程序,百度小程序,H5,ReactNative 多端适配运行
  • 提供友好的 API,可灵活的使用组件

关于 Taro

Taro 是由 凹凸实验室 倾力打造的多端开发解决方案。现如今市面上端的形态多种多样,Web、ReactNative、微信小程序等各种端大行其道,当业务要求同时在不同的端都要求有所表现的时候,针对不同的端去编写多套代码的成本显然非常高,这时候只编写一套代码就能够适配到多端的能力就显得极为需要。

使用 Taro,我们可以只书写一套代码,再通过 Taro 的编译工具,将源代码分别编译出可以在不同端(微信小程序、H5、RN等)运行的代码。

体验

请使用微信扫一扫以下体验码

QRCode

相关链接

安装

2.x

当 Taro 版本 < 3 时,使用 2.x 版本

$ npm install taro-ui@2.3.4

3.x

当 Taro 版本 ≥ 3 时,使用 3.x 版本

$ npm install taro-ui@latest

使用

在代码中 import 需要的组件并按照文档说明使用

import { AtButton } from 'taro-ui'

开发交流

官方微信交流群

开发计划

开发计划

路线图

Roadmap

贡献

如果你在使用 Taro UI 时遇到问题,或者有好的建议,欢迎给我们提 Issue 或 Pull Request。在开始之前,请阅读 贡献指南

License

MIT

NPM DownloadsLast 30 Days