Top Related Projects
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Essential UI blocks for building mobile web apps.
轻量、可靠的小程序 UI 组件库
:dog: 一套组件化、可复用、易扩展的微信小程序 UI 组件库
一套高质量的微信小程序 UI 组件库
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
- Using a basic button component:
import { AtButton } from 'taro-ui'
const MyComponent = () => {
return (
<AtButton type='primary' onClick={() => console.log('Clicked!')}>
Click me
</AtButton>
)
}
- 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>
)
}
- 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:
- Install Taro UI:
npm install taro-ui
- 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>
)
}
- 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
开放式跨端跨框架解决方案,支持使用 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.
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
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
Taro UI
ä¸æ¬¾åºäº Taro
æ¡æ¶å¼åçå¤ç«¯ UI ç»ä»¶åº
ç¹æ§
- åºäº
Taro
å¼å UI ç»ä»¶ - ä¸å¥ç»ä»¶å¯ä»¥å¨
微信å°ç¨åº
ï¼æ¯ä»å®å°ç¨åº
ï¼ç¾åº¦å°ç¨åº
ï¼H5
ï¼ReactNative
å¤ç«¯éé è¿è¡ - æä¾å好ç APIï¼å¯çµæ´»ç使ç¨ç»ä»¶
å ³äº Taro
Taro æ¯ç± å¹å¸å®éªå®¤ å¾åæé çå¤ç«¯å¼å解å³æ¹æ¡ãç°å¦ä»å¸é¢ä¸ç«¯çå½¢æå¤ç§å¤æ ·ï¼WebãReactNativeã微信å°ç¨åºçåç§ç«¯å¤§è¡å ¶éï¼å½ä¸å¡è¦æ±åæ¶å¨ä¸åç端é½è¦æ±ææ表ç°çæ¶åï¼é对ä¸åç端å»ç¼åå¤å¥ä»£ç çææ¬æ¾ç¶é常é«ï¼è¿æ¶ååªç¼åä¸å¥ä»£ç å°±è½å¤éé å°å¤ç«¯çè½åå°±æ¾å¾æ为éè¦ã
ä½¿ç¨ Taroï¼æ们å¯ä»¥åªä¹¦åä¸å¥ä»£ç ï¼åéè¿ Taro çç¼è¯å·¥å ·ï¼å°æºä»£ç åå«ç¼è¯åºå¯ä»¥å¨ä¸å端ï¼å¾®ä¿¡å°ç¨åºãH5ãRNçï¼è¿è¡ç代ç ã
ä½éª
请使ç¨å¾®ä¿¡æ«ä¸æ«ä»¥ä¸ä½éªç
ç¸å ³é¾æ¥
å®è£
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'
å¼å交æµ
å¼å计å
路线å¾
è´¡ç®
å¦æä½ å¨ä½¿ç¨ Taro UI
æ¶éå°é®é¢ï¼æè
æ好ç建议ï¼æ¬¢è¿ç»æ们æ Issue
æ Pull Request
ãå¨å¼å§ä¹åï¼è¯·é
读 è´¡ç®æå
License
MIT
Top Related Projects
开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发微信/京东/百度/支付宝/字节跳动/ QQ 小程序/H5/React Native 等应用。 https://taro.zone/
Essential UI blocks for building mobile web apps.
轻量、可靠的小程序 UI 组件库
:dog: 一套组件化、可复用、易扩展的微信小程序 UI 组件库
一套高质量的微信小程序 UI 组件库
A UI library by WeChat official design team, includes the most useful widgets/modules.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot