10 February 2020

TouchableOpacity with multiLine example in react native

  • Create Components folder under src folder
  • Add TouchableOpacitywithMultiLine.js file and add below Code
import React from "react";
import { TouchableOpacityViewText } from "react-native";

const callFun = () => {
  alert("Clicked on Touchable Opacity Multiple Line Text Button!!!");
};

const TouchableOpacitywithMultiLine = () => {
  return (
    <View>
      <Text> TouchableOpacity with Multiple Line text example</Text>
      <TouchableOpacity onPress={callFun} style={styles.myStyle}>
        <Text>Touchable Opacity Button Line1</Text>
        <Text>Touchable Opacity Button Line2</Text>
        <Text>Touchable Opacity Button Line3</Text>
        <Text>Touchable Opacity Button Line4</Text>
      </TouchableOpacity>
    </View>
  );
};
export default TouchableOpacitywithMultiLine;
const styles = StyleSheet.create({
  myStyle: {
    textAlign: "center",
    fontWeight: "bold",
    fontSize: 30,
    backgroundColor:'#ff0000',
    padding:20
  }
});
  • Open App.js file and update code as below


import React from 'react';
import { View,StyleSheet } from 'react-native';
import TouchableOpacitywithMultiLine from './src/Component/TouchableOpacitywithMultiLine'

 const  App=()=> {
  return (
    <View style={styles.container}>
      <TouchableOpacitywithMultiLine/>
    </View>
  );
}
export default App;

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    paddingTop:80
  },
});

Output:

No comments:

Post a Comment