Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-custom-segmented-control
Advanced tools
Native iOS Custom segmented control for React Native
Native UI component for Segmented Control with custom style
Install using npm
:
npm i react-native-custom-segmented-control
Locate the module lib folder in your node modules:
PROJECT_DIR/node_modules/react-native-custom-segmented-control/lib
.
Drag the CustomSegmentedControl.xcodeproj
project file into your project
Add libCustomSegmentedControl.a
to your target's Linked Frameworks and Libraries.
Require the native component:
import {CustomSegmentedControl} from 'react-native-custom-segmented-control'
Now use it in your jsx inside your View
:
<CustomSegmentedControl
style={{
flex:1,
backgroundColor: 'white'
marginVertical:
}}
textValues={['ORDERS','PRODUCTS' ]}
selected={0}
segmentedStyle={{
selectedLineHeight: 2,
fontSize:17,
fontWeight: 'bold', // bold, italic, regular (default)
segmentBackgroundColor: 'transparent',
segmentTextColor: '#7a92a5',
selectedLineColor: '#00adf5',
selectedLineAlign: 'bottom', // top/bottom/text
selectedLineMode: 'text', // full/text
selectedTextColor: 'black',
selectedLinePaddingWidth: 30,
segmentFontFamily: 'system-font-bold'
}}
animation={{
duration: 0.7,
damping: 0.5
}}
onSelectedWillChange={(event)=> {
}}
onSelectedDidChange={(event)=> {
}}
/>
##Properties
Attribute | Description |
---|---|
textValues | [Array] Array of strings which will be presented on the segmented control |
selected | [int] The selected segment |
onSelectedWillChange | [function] callback function will be called before the selected animation will take place |
onSelectedDidChange | [function] callback function will be called after the selected animation will take place |
animation | [Object] see Animation Properties |
segmentedStyle | [Object] see Segmented Style Properties |
##Segmented Style Properties
Attribute | Description |
---|---|
selectedLineHeight | [float] The selected line height. Default is 2 |
fontSize | [float] The segmented control text font size. Default is 14 |
segmentBackgroundColor | [Color] The segmented control background color. Default is 'black' |
segmentTextColor | [Color] The segmented control text color. Default is system default (blue) |
selectedTextColor | [Color] The selected segment color |
segmentHighlightTextColor | [Color] The segmnet highlight color. Default is black with alpha 0.5 |
segmentFontFamily | [Font/'system-font-bold' /'system-font' ] The segmented control font. Default is system-font default |
selectedLineColor | [Color] The selected line color. Default is 'black' |
selectedLineAlign | ['top' /'bottom' /'text' ] The selected line vertical alignment. Defualt is 'text' |
selectedLineMode | ['full' /'text' ] The selected line mode. For determine if the line will be text width of full button width. Default is 'text' |
selectedLinePaddingWidth | [float] The selected line width padding |
##Animation Properties
Attribute | Description |
---|---|
duration | [float] The animation duration. Default is 0.2 sec |
damping | [float] The damping ratio for the spring animation. Default is 0 (no damping) |
animationType | ['default' , 'middle-line' , 'close-and-open' ] The transition animation type. Default is 'default' |
FAQs
Native iOS Custom segmented control for React Native
The npm package react-native-custom-segmented-control receives a total of 4 weekly downloads. As such, react-native-custom-segmented-control popularity was classified as not popular.
We found that react-native-custom-segmented-control demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.