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

@freakycoder/react-native-input-bar

v1.1.0

Published

Fully customizable, beautifully designed Input Bar for React Native

Downloads

8

Readme

Battle Tested ✅

Fully customizable, beautifully designed Input Bar for React Native

npm version npm Platform - Android and iOS License: MIT styled with prettier

Installation

Add the dependency:

npm i @freakycoder/react-native-input-bar

Peer Dependencies

IMPORTANT! You need install them
"react-native-spinkit": ">= 1.5.0",
"react-native-androw": ">= 0.0.34",
"@freakycoder/react-native-bounceable": "^0.2.0",

Note: Do not for get to pod install for installing properly SpinKit

Usage

InputBar should stay at the bottom therefore, please do not forget to set flex: 1 on your main container. Example is available for the real usage.

Import

import RNInputBar from "@freakycoder/react-native-input-bar";

Usage

<RNInputBar />

Auto-Grow InputBar Usage

All you need to do is set the multiline and set the height prop as null.

<RNInputBar multiline height={null} minHeight={50} />

Configuration - Props

| Property | Type | Default | Description | | ------------------------ | :-----------: | :-----------------: | -------------------------------------------------------------------------------------------------------------- | | width | string/number | 90% of screen width | change the InputBar's width | | height | string/number | 50 | change the InputBar's height | | bottom | string/number | 24 | change the InputBar's bottom position | | value | string | undefined | set the TextInput's value | | onChangeText | function | undefined | handle onChangeText function | | backgroundColor | color | #fdfdfd | set your own color for InputBar's background color | | textColor | color | #9da1ab | set your own color for TextInput's text color | | shadowColor | color | #757575 | set your own color for TextInput's shadow color | | placeholder | string | Type a message... | change the TextInput's placeholder | | textInputStyle | style | default | set your own style for TextInput | | disableSendIcon | boolean | false | disable the send icon | | disableSecondaryIcon | boolean | false | disable the secondary icon | | onSendPress | function | undefined | set a function when send icon is on pressed | | secondaryIconOnPress | function | undefined | set a function when secondary icon is on pressed | | spinnerVisibility | boolean | false | make the spinner visible instead of primarty icon | | spinnerType | string | FadingCircleAlt | change the spinner type | | spinnerSize | number | 20 | change the spinner number | | spinnerColor | color | #9da1ab | change the spinner color | | spinnerStyle | style | undefined | set your own style for spinner | | multiline | boolean | false | if you want auto-grow text RNInputBar then you need to use this prop & set the height prop to null ! | | minHeight | string/number | 50 | change the minimum height of the RNInputBar | | maxHeight | string/number | null | change the maximum height of the RNInputBar | | borderRadius | number | 12 | change the border radius of the RNInputBar | | sendIconImageSource | image | default | change the send icon image | | secondaryIconImageSource | image | default | change the secondary icon image default is attachment |

Roadmap

  • [x] ~~LICENSE~~
  • [x] ~~CHANGELOG~~
  • [x] ~~Auto-Grow Feature~~
  • [x] ~~TypeScript Challange~~
  • [ ] Optional Spinkit for secondary icon
  • [ ] Better Example

Credits

Thanks to Mayurksgr for this awesome inspiration. Credit Design Inpsiration

Author

FreakyCoder, [email protected]

License

React Native Input Bar is available under the MIT license. See the LICENSE file for more info.