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

react-native-magic-tabs

v1.0.3

Published

A magic horizontally scrolling tab component for React Native

Downloads

17

Readme

MagicTabs for React Native

MagicTabs is a customizable, scrollable tab component for React Native applications. It allows for dynamic tab creation with extensive styling and alignment options.

Features

  • Dynamic tab creation from an array of items
  • Customizable text, button styles for both active and inactive states
  • Optional custom rendering for each tab
  • Configurable alignment of tabs within the container
  • Animated scrolling to active tab
  • Fully typed with TypeScript for easy integration into your project

Installation

Install react-native-magic-tabs using the package manager of your choice:

npm

npm install react-native-magic-tabs

yarn

yarn add react-native-magic-tabs

Expo CLI

npx expo add react-native-magic-tabs

Usage

import React from "react";
import { Dimensions, View } from "react-native";
import MagicTabs, { MagicTabsItemsProps } from "react-native-magic-tabs";

const App = () => {
  const screenWidth = Dimensions.get("window").width;
  const [activeIndex, setActiveIndex] = React.useState(6);

  const tabs: MagicTabsItemsProps[] = [
    { id: 1, name: "Tab 1" },
    { id: 2, name: "Tab 2" },
    // Add more tabs as needed
  ];

  const onPress = (index: number) => {
    console.log("Selected tab:", index);
  };

  return (
    <View style={{ flex: 1 }}>
      <MagicTabs
        items={NavigationTabs}
        onPress={onPress}
        activeIndex={activeIndex}
        style={{ marginBottom: 12 }}
        spaceBetween={8}
        animated={true}
        width={screenWidth}
        buttonStyle={{
          flex: 1,
          borderRadius: 6,
          paddingHorizontal: 12,
          paddingVertical: 7,
        }}
        activeButtonStyle={{
          flex: 1,
          borderRadius: 6,
          paddingHorizontal: 12,
          paddingVertical: 7,
        }}
        textStyle={{ fontSize: 12, fontWeight: "bold" }}
        activeTextStyle={{ fontSize: 12, fontWeight: "bold" }}
        backgroundColor={"#B02132"}
        activeBackgroundColor={"#fff"}
        textColor={"#fff"}
        activeTextColor={"#C62538"}
        height={30}
        customItem={false}
        align="center"
      />
    </View>
  );
};

export default App;

Props

Below is a table detailing the props accepted by the MagicTabs component, including their types and descriptions:

| Prop | Type | Description | | ----------------------- | --------------------------------------------------------------------- | ------------------------------------------------------------- | | items | Array<MagicTabsItemsProps> | Array of tab items. Each item should have an id and name. | | onPress | (index: number) => void | Function called when a tab is pressed. Receives the index. | | textStyle | StyleProp<TextStyle> | Style object for text within tabs. | | activeTextStyle | StyleProp<TextStyle> | Style object for text within active tabs. | | buttonStyle | StyleProp<ViewStyle> | Style object for the tab buttons. | | activeButtonStyle | StyleProp<ViewStyle> | Style object for active tab buttons. | | textColor | string | Color of the text for inactive tabs. | | activeTextColor | string | Color of the text for active tabs. | | backgroundColor | string | Background color of the tabs. | | activeBackgroundColor | string | Background color of the active tab. | | activeIndex | number | Index of the initially active tab. | | style | StyleProp<ViewStyle> | Style object for the tab container. | | contentContainerStyle | StyleProp<ViewStyle> | Style object for the tab scrollview container. | | spaceBetween | number | Space between individual tabs. | | animated | boolean | Whether the scrolling to the active tab is animated. | | width | number | Width of the tab container. Defaults to the device's width. | | height | number | Height of the tab container. | | Item | React.ReactNode \| ((item: MagicTabsItemsProps) => React.ReactNode) | Custom render function or component for tabs. | | ItemActive | React.ReactNode \| ((item: MagicTabsItemsProps) => React.ReactNode) | Custom render function or component for active tabs. | | customItem | boolean | Enables custom rendering for tabs. | | align | "center" \| "start" \| "end" | Alignment of the tabs within the container. |

Use these props to customize the MagicTabs component according to your application's needs.

Customizing Tabs

MagicTabs allows for extensive customization including custom render functions or components for individual tabs, adjustable spacing, alignment, and much more. Experiment with the props to create the perfect tab component for your app.

Contributing

Contributions are welcome! Please open an issue or submit a pull request with your improvements or suggestions.

License

This project is licensed under the MIT License.