
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@naturalclar/segmented-control
Advanced tools
@react-native-community/segmented-controlReact Native SegmentedControlIOS library. Use SegmentedControlIOS to render a UISegmentedControl iOS.
Install the library using either Yarn:
yarn add @react-native-community/segmented-control
or npm:
npm install --save @react-native-community/segmented-control
react-native moduleThis module was created when the segmentedControlIos was split out from the core of React Native. To migrate to this module you need to follow the installation instructions above and then change you imports from:
import { SegmentedControlIOS } from "react-native";
to:
import SegmentedControlIOS from "@react-native-community/segmented-control";
Start by importing the library:
Use SegmentedControlIOS to render a UISegmentedControl iOS.
The selected index can be changed on the fly by assigning the selectedIndex prop to a state variable, then changing that variable. Note that the state variable would need to be updated as the user selects a value and changes the index, as shown in the example below.
import SegmentedControlIOS from "@react-native-community/segmented-control";
return (
<SegmentedControlIOS
values={["One", "Two"]}
selectedIndex={this.state.selectedIndex}
onChange={event => {
this.setState({ selectedIndex: event.nativeEvent.selectedSegmentIndex });
}}
/>
);
type SegmentedControlIOSProps = $ReadOnly<{|
...ViewProps,
/**
* The labels for the control's segment buttons, in order.
*/
values?: $ReadOnlyArray<string>,
/**
* The index in `props.values` of the segment to be (pre)selected.
*/
selectedIndex?: ?number,
/**
* Callback that is called when the user taps a segment;
* passes the segment's value as an argument
*/
onValueChange?: ?(value: number) => mixed,
/**
* Callback that is called when the user taps a segment;
* passes the event as an argument
*/
onChange?: ?(event: Event) => mixed,
/**
* If false the user won't be able to interact with the control.
* Default value is true.
*/
enabled?: boolean,
/**
* Accent color of the control.
*/
tintColor?: ?string,
/**
* If true, then selecting a segment won't persist visually.
* The `onValueChange` callback will still work as expected.
*/
momentary?: ?boolean,
|}>;
Please see the contributing guide.
The library is released under the MIT licence. For more information see LICENSE.
FAQs
React Native SegmentedControlIOS library
The npm package @naturalclar/segmented-control receives a total of 2 weekly downloads. As such, @naturalclar/segmented-control popularity was classified as not popular.
We found that @naturalclar/segmented-control demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.