halka-test
v1.0.14
Published
A collection of customizable React Native components using **Tailwind CSS** and **React Native Reanimated**. This package includes a **Accordion, Bottom Sheet, Button, Carousel, Check Box, Circular Progress, Circular Timer, Dialog, Modal, Opt Input, Pro
Readme
halka-test
A collection of customizable React Native components using Tailwind CSS and React Native Reanimated.
This package includes a Accordion, Bottom Sheet, Button, Carousel, Check Box, Circular Progress, Circular Timer, Dialog, Modal, Opt Input, Progress Bar, Range Slider, Switch, Tab and Toast. More Halka components will be added in a timely.
🚀 Installation
First, install the package via npm or yarn:
npm install halka-test
# or
yarn add halka-test
🚀 Dependencies
This package requires:
react (>= 18.0.0)
react-native (>= 0.70.0)
react-native-reanimated (>=3.0.0)
react-native-gesture-handler (>=2.0.0)
react-native-svg (>=15.0.0)📌 Usage
Importing Components Once installed, you can easily import and use the components in your project.
import React from "react";
import { View } from "react-native";
import { Accordion, Button, ProgressBar, CircularProgress } from "halka-test";
const App = () => {
return (
<View className="flex-1 items-center justify-center">
<Button />
<Accordion />
<ProgressBar />
<CircularProgress />
</View>
);
};
export default App;