Giter VIP home page Giter VIP logo

react-native-settings-page's Introduction

react-native-settings-page

Version 2.0.6

Sample Image 01 Sample Image 02

This is a cool Settings page based on Material Design

Getting started

$ npm install react-native-settings-page --save

$ yarn add react-native-settings-page

$ react-native link react-native-vector-icons

Developer

Props

types

text: use the text prop to display in Row

iconName: use the icon name to display a icon on the row, the source from icons is FontAwesome

NavigateRow exclusive types and methods

onPressCallback: use this to implement your onPress method

<NavigateRow
  	text='Navigate Row'
  	iconName={'your-icon-name'}
	onPressCallback={() => { console.log('onPress') }} />

SwitchRow exclusive types and methods

value: use _value to controll if the switch will be switched on or off

onValueChange: use _onValueChange to implemente the switch action

<SwitchRow 
	text='Switch Row' 
	iconName='your-icon-name'
	onPressCallback={() => { console.log('on Body Press (optional)') }}
	_value={false}
	_onValueChange={() => { console.log('switched') }} />

CheckRow exclusive types and methods

value: use _value to controll if the checkbox will be switched on or off

color: use _color to define the checkbox active color

onValueChange: use _onValueChange to implemente the check action

<CheckRow 
	text='Switch Row' 
	iconName='your-icon-name'
	onPressCallback={() => { console.log('on Body Press (optional)') }}
	_color='#000'
	_value={false}
	_onValueChange={() => { console.log('checked/unchecked') }} />

SliderRow exclusive types and methods

navigate: use navigate to define if the slider row will show the angle-right icon

value: use _value to define slider's progress

color: use _color to define the slider active color

min: use _max to define slider's min progress

max: use _max to define slider's max progress

onValueChange: use _onValueChange to implemente the onValueChange action

<SliderRow 
	navigate
	text='Slider Row' 
	iconName='your-icon-name'
	onPressCallback={() => { console.log('on Body Press (optional)') }}
	_color='#000'
	_value={70}
	_min={0}
	_max={100}
	_onValueChange={value => { console.log('value: ' + value) }} />

Usage

Below is a sample usage of this package

import React from 'react';
import ReactNativeSettingsPage, { 
	SectionRow, 
	NavigateRow,
	CheckRow
} from 'react-native-settings-page';

class Settings extends React.Component {
	// TODO: implement your navigationOptions
	state = {
		check: false,
		switch: false,
		value: 40
	}
	_navigateToScreen = () => {
		const { navigation } = this.props
		navigation.navigate('Your-Screen-Name');
	}
	render() {
		return (
			<ReactNativeSettingsPage>
				<SectionRow text='Usage'>
					<NavigateRow
						text='Navigate Row'
						iconName='your-icon-name'
						onPressCallback={this._navigateToScreen} />
					<SwitchRow 
						text='Switch Row' 
						iconName='your-icon-name'
						_value={this.state.switch}
						_onValueChange={() => { this.setState({ switch: !this.state.switch }) }} />
					<CheckRow 
						text='Check Row'
						iconName='your-icon-name'
						_color='#000'
						_value={this.state.check}
						_onValueChange={() => { this.setState({ check: !this.state.check }) }} />
					<SliderRow 
						text='Slider Row'
						iconName='your-icon-name'
						_color='#000'
						_min={0}
						_max={100}
						_value={this.state.value}
						_onValueChange={value => { this.setState({ value }) }} />
				</SectionRow>
			</ReactNativeSettingsPage>
		)
	}
}

export default Settings

License

This project is licensed under the MIT License - see the LICENSE file for details.

react-native-settings-page's People

Contributors

mazurco066 avatar derkweijers avatar naderabdalghani avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.