How to send data current page to previous page using callBack in react - native.
import React, { Component} from 'react';
import { Text, TouchableOpacity} from 'react-native';
import {Actions} from 'react-native-router-flux';
export default class FirstScreen extends Component {
constructor(props) {
super(props);
}
onCallBack(data)...
Mehedi Hassan Piash | Senior Software Engineer | Android | iOS | KMP | Ktor | Jetpack Compose | React-Native.
September 29, 2019
September 25, 2019
Git Bibel [Git command]
Clone repository : git clone "repository_name"
Commit changes : git commit -m "[commit message]"
Show last five commit : git log --oneline -5
Merging multiple commit to single commit: git merge --squash [branch_name]
Git fetch : git fetch origin
CheckOut with a new local branch: git checkout -b name origin/develop
Push only changes: git push origin HEAD:refs/for/develop
Modify...