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

react-native-custom-segmented-control

v3.1.0

Published

Native iOS Custom segmented control for React Native

Downloads

21

Readme

react-native-custom-segmented-control

Native UI component for Segmented Control with custom style

animationType: 'middle-line' selectedLineAlign: 'text' selectedLineMode: 'full' Screenshots

animationType: 'open-and-close' selectedLineAlign: 'text' selectedLineMode: 'text' Screenshots

animationType: 'middle-line' selectedLineAlign: 'bottom' selectedLineMode: 'text' Screenshots

animationType: 'middle-line' selectedLineAlign: 'top' selectedLineMode: 'full' Screenshots

animationType: 'middle-line' selectedLineAlign: 'top' selectedLineMode: 'full' Screenshots

animationType: 'middle-line' selectedLineAlign: 'text' selectedLineMode: 'text' Screenshots

Installation

  • Install using npm:

    npm install react-native-custom-segmented-control --save
  • 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.

How To Use

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: 8
	}}
	textValues={['ORDERS','PRODUCTS' ]}
	selected={0}
	segmentedStyle={{
		selectedLineHeight: 2,
		fontSize:17,
		fontWeight: 'bold', // bold, italic, regular (default)
		segmentBackgroundColor: 'transparent',
		segmentTextColor: '#7a92a5',
		segmentHighlightTextColor: '#7a92a599',
		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,
		animationType: 'middle-line',
		initialDampingVelocity: 0.4
	}}
	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. Default is 2

##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' initialDampingVelocity | (float) The initial damping velocity. Default is 0