React Native - Seekbar Slider - Mobile Application development

Congratulations! You are standing in the right place! In this article, we would be going to engender a react native application with the Text component and Slider component.

We are going to create a mobile app like below, 


Implementation:

First, You must set up your local development environment. Follow the below link to set up your local environment.


After executing the commands mentioned in this link, a folder with a specified name is created with the following contents.


Next, we are going to edit the App.js file and write the below code.

Import AppRegistry, StyleSheet, Text, View, and Slider component in our project.

import React, { Component } from 'react';

import { AppRegistry, StyleSheet, Text, View, Slider } from 'react-native';

Engender constructor()

constructor() {

super();

this.state = {

SliderInitValue: 18

}
}

Engender a Parent View in render’s return block and inside it engender a Text component. Set the SliderValue State value in the Text component.

render() {

return (

<View style={styles.MainContainer}>

<Text style={{ fontSize: 20 }}>Age = {this.state.SliderInitValue}</Text>

<Slider
step={1}
minimumValue={18}
maximumValue={60}
minimumTrackTintColor="purple"
onValueChange={(ChangedValue) => this.setState({
SliderInitValue: ChangedValue })}
style={{ width: '100%' }}
/>

</View>
);
}
}

Style Sheet

const styles = StyleSheet.create({

MainContainer: {

justifyContent: 'center',
alignItems: 'center',
flex: 1,
margin: 10

}

});

Complete source code for App.js File

import React, { Component } from 'react';

import { AppRegistry, StyleSheet, Text, View, Slider } from 'react-native';

export default class App extends Component {

constructor() {

super();

this.state = {

SliderInitValue: 18

}
}

render() {

return (

<View style={styles.MainContainer}>

<Text style={{ fontSize: 20 }}>Age = {this.state.SliderInitValue}
</Text>

<Slider
step={1}
minimumValue={18}
maximumValue={60}
minimumTrackTintColor="purple"
onValueChange={(ChangedValue) => this.setState({
SliderInitValue: ChangedValue })}
style={{ width: '100%' }}
/>

</View>
);
}
}

const styles = StyleSheet.create({

MainContainer: {

justifyContent: 'center',
alignItems: 'center',
flex: 1,
margin: 10

}

});

AppRegistry.registerComponent('App', () => App);

Run

sibinmuhammed@ladmin-H310M-S2:~$ react-native start

sibinmuhammed@ladmin-H310M-S2:~/knf-reactnative/KnowledgeFactoryDemo$ react-native run-android

More Topics,


Popular posts from this blog

Learn Java 8 streams with an example - print odd/even numbers from Array and List

Java Stream API - How to convert List of objects to another List of objects using Java streams?

Registration and Login with Spring Boot + Spring Security + Thymeleaf

Java, Spring Boot Mini Project - Library Management System - Download

ReactJS, Spring Boot JWT Authentication Example

Spring Boot + Mockito simple application with 100% code coverage

Top 5 Java ORM tools - 2024

Java - Blowfish Encryption and decryption Example

Spring boot video streaming example-HTML5

Google Cloud Storage + Spring Boot - File Upload, Download, and Delete