Preview:
import React from 'react';
import {
  Button,
  Text,
  View,
} from 'react-native';

const Func_comp = (props) => {
    function SignUp2()
    {
        alert("Hi, Signup Class with other func.")
    }

    const SignUp = (Num) =>
    {
        alert("Hi, Signup Class with other func." + Num)
    }
  console.warn(props)
    return (
      <View>
        <Button title="Login" onPress={()=>alert("Hi, Func Component!")}/>
        <Button title="SignUp" onPress={SignUp.bind(this, "100")}/>
        <Text>{props.Data}</Text>
      </View>
    )
  }

  export default Func_comp
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter