npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@mashfiqur.rahman/wizui

v1.0.2

Published

**WizUI** is a customizable React Native UI component library designed to be used in various mobile applications. It provides essential UI components, allowing developers to quickly build React Native apps with pre-built, customizable UI elements.

Downloads

11

Readme

WizUI

WizUI is a customizable React Native UI component library designed to be used in various mobile applications. It provides essential UI components, allowing developers to quickly build React Native apps with pre-built, customizable UI elements.

Features

  • A collection of commonly used UI components.
  • Fully customizable components for different themes and styles.
  • Simple, intuitive API for easy integration into any React Native project.

Table of Contents

Installation

To install WizUI, you can use npm or yarn:

npm install @mashfiqur.rahman/wizui
# or
yarn add @mashfiqur.rahman/wizui

Usage

Here is an example of how to use the Button and TextInput components from WizUI:

import React, { useState } from 'react';
import { Button, TextInput } from '@mashfiqur.rahman/wizui';

const App = () => {
  const [inputValue, setInputValue] = useState('');

  return (
    <View style={{ padding: 20 }}>
      <TextInput
        value={inputValue}
        onChange={setInputValue}
        placeholder="Enter text here"
      />
      <Button
        label="Submit"
        onPress={() => alert(`Submitted: ${inputValue}`)}
      />
    </View>
  );
};

export default App;

Available Components

WizUI provides a comprehensive set of form, layout, display, and feedback components. Here's a list of the available components:

Form Components

  • Button: A customizable button component.
  • TextInput: A single-line or multi-line text input field.
  • Checkbox: A standard checkbox component.
  • RadioGroup: A group of radio buttons.
  • Select: A dropdown select component.
  • Switch: A toggle switch component.

Layout Components

  • Grid: A flexible grid layout system.
  • Row and Column: Grid layout helpers.
  • Card: A configurable card component with header and footer.

Display Components

  • Tooltip: A customizable tooltip component.
  • Modal: A modal dialog for presenting content.
  • Carousel: A horizontal, swipeable carousel.
  • Tags: Tag items for displaying labels or categories.
  • Avatar: A circular or square avatar component.

Feedback Components

  • Toast: Displays temporary messages.
  • Alert: An alert box for important messages.
  • ProgressBar: A customizable progress indicator.
  • Stepper: A step progress indicator.
  • Notification: A notification component to display messages.

Navigation Components

  • Tabs: A tab navigation component.
  • Breadcrumb: Breadcrumb navigation.

Customizing Theme

You can customize the default theme of WizUI by providing your own colors, fonts, and other design properties.

Example:

import { ThemeProvider } from 'wizui/theme/ThemeProvider';

const customTheme = {
  colors: {
    primary: '#6200ee',
    background: '#f6f6f6',
    text: '#000000',
    error: '#B00020',
  },
};

const App = () => (
  <ThemeProvider theme={customTheme}>
    {/* Your app components here */}
  </ThemeProvider>
);

Contributing

We welcome contributions! To contribute to WizUI, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bugfix.
  3. Make your changes.
  4. Submit a pull request with a detailed explanation of your changes.

Development

To develop the project locally:

  1. Clone the repository:

    git clone https://github.com/Mashfiqur-Rahman/wizui.git
  2. Install dependencies:

    npm install
  3. Run the project locally for development:

    npm start

License

This project is licensed under the MIT License. See the LICENSE file for more details.