1.19.4 • Published 4 months ago

elite-native v1.19.4

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Elite Native

A high-quality set of reusable components for React Native.

Components

šŸ“Œ Buttons

  • Button - Standard button component.
  • Text Button - A button with text-only styling.
  • Floating Action Button - A floating action button for quick actions.

šŸ“Œ Form Inputs

  • CheckboxGroup - A group of checkboxes for multiple selections.
  • Checkbox - A single checkbox component.
  • DatePicker - A date picker for selecting dates.
  • EmailInput - An input field for email addresses with validation.
  • MaskedInput - An input field with customizable masking.
  • NepaliDatePicker - A date picker supporting Nepali date format.
  • NumberInput - An input field for numeric values.
  • PasswordInput - An input field with secure text entry.
  • RadioButton - A radio button for single selection options.
  • Select - A dropdown select component.
  • SwitchSelector - A switch-style selector for toggling between options.
  • TextareaInput - A multi-line text input field.
  • TimePicker - A time picker for selecting time values.

šŸ“Œ Loaders

  • Full-Screen Loader - A loader that covers the entire screen during loading states.

Compatibility

  • Tested with: React Native (Expo)
  • Supported Platforms: iOS, Android

Installation

npm install elite-native
# or
yarn add elite-native

Usage Example

import {Button, TextInput, Select} from "elite-native";

const App = () => {
    return (
        <View>
            <TextInput label="Name" placeholder="Enter your name"/>
            <Select label="Country" options={[{label: 'USA', value: 'us'}]}/>
            <Button title="Submit" onPress={() => alert("Submitted!")}/>
        </View>
    );
};

Roadmap

šŸš€ More components and enhancements will be added in future updates. Stay tuned!

License

MIT

1.19.4

4 months ago

1.19.3

4 months ago

1.19.1

4 months ago

1.3.1

4 months ago

1.3.0

4 months ago

1.2.4

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago