Socket
Socket
Sign inDemoInstall

react-native-input-outline

Package Overview
Dependencies
6
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.1 to 1.0.2

react-native-input-outline.gif

2

package.json
{
"name": "react-native-input-outline",
"version": "1.0.1",
"version": "1.0.2",
"description": "A react-native component for a themed text input box.",

@@ -5,0 +5,0 @@ "main": "index.js",

# react-native-input-outline
A react-native component that uses a customized text input.
![](react-native-input-outline.gif)
## Installation
$ npm i -- save react-native-input-outline
or
or
$ yarn add react-native-input-outline
## Usage
This component inherits props from TextInput in the standard React-Native library, so you can essentially use it in the same way that you would use that TextInput. However, you can configure the colors, and the placeholder, and the overall styling if you wish, however the whole point of this component is so you don't have to do any styling yourself.
This component inherits props from TextInput in the standard React-Native library, so you can essentially use it in the same way that you would use that TextInput. However, you can configure the colors, and the placeholder, and the overall styling if you wish, however the whole point of this component is so you don't have to do any styling yourself.
import InputOutline from 'react-native-input-outline';
<InputOutline
placeholder="Email"
focusedColor='blue'
<InputOutline
placeholder="Email"
focusedColor='blue'
defaultColor='grey'
/>
## Props
| Prop | Description | Default |
|--:|:--|:--|
|Inherited Props|Any prop from React-Native TextInput|[TextInput Props](https://facebook.github.io/react-native/docs/textinput#props)|
| placeholder | The label/placeholder that will display giving information about your input field. | *String*("Placeholder") |
| focusedColor | The color that shows when the input is focused. |*String*("blue") |
|defaultColor|The color that shows when the input is empty and not focused.|*String*("#c5b4b8")|
## Props
| Prop | Description | Default |
| --------------: | :--------------------------------------------------------------------------------- | :------------------------------------------------------------------------------ |
| Inherited Props | Any prop from React-Native TextInput | [TextInput Props](https://facebook.github.io/react-native/docs/textinput#props) |
| placeholder | The label/placeholder that will display giving information about your input field. | _String_("Placeholder") |
| focusedColor | The color that shows when the input is focused. | _String_("blue") |
| defaultColor | The color that shows when the input is empty and not focused. | _String_("#c5b4b8") |

@@ -30,11 +30,7 @@ import * as React from "react";

{
transform: [
{ translateY: -(INPUT_HEIGHT / 2) },
{ translateX: -PADDING },
{ scale: 0.8 }
]
transform: [{ translateY: -(INPUT_HEIGHT / 2) }, { scale: 0.8 }]
},
DURATION
);
this.spacerRef.transitionTo({ transform: [{ scaleX: 0.85 }] }, DURATION);
this.spacerRef.transitionTo({ transform: [{ scaleX: 1 }] }, DURATION);
}

@@ -83,2 +79,3 @@

width: labelWidth,
left: PADDING,
backgroundColor: focused ? BG_COLOR : currColor,

@@ -85,0 +82,0 @@ height: BORDER_WIDTH,

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc