@@ -10,6 +10,7 @@ import axios from 'axios'; | |||||
import { connect } from 'react-redux'; | import { connect } from 'react-redux'; | ||||
import { serviceActionPending, serviceActionError, serviceActionSuccess } from '../actions/PrescriptionActions'; | import { serviceActionPending, serviceActionError, serviceActionSuccess } from '../actions/PrescriptionActions'; | ||||
import ProgressCircle from 'react-native-progress-circle'; | import ProgressCircle from 'react-native-progress-circle'; | ||||
import back from '../assets/icons/back1.png' | |||||
import LottieView from 'lottie-react-native'; | import LottieView from 'lottie-react-native'; | ||||
class Prescription extends Component<Props> { | class Prescription extends Component<Props> { | ||||
@@ -66,7 +67,9 @@ class Prescription extends Component<Props> { | |||||
<View> | <View> | ||||
<View style={styles.pre_style1}> | <View style={styles.pre_style1}> | ||||
<TouchableOpacity style={styles.pre_style2} onPress={this.handleBackButtonClick} activeOpacity={1} > | <TouchableOpacity style={styles.pre_style2} onPress={this.handleBackButtonClick} activeOpacity={1} > | ||||
<Icon onPress={this.handleBackButtonClick} style={styles.pre_style3} name='arrow-back' /> | |||||
{/* <Icon onPress={this.handleBackButtonClick} style={styles.pre_style3} name='arrow-back' /> */} | |||||
<Image | |||||
style={{width: 20,height: 20,backgroundColor: "white",marginVertical: 6,marginLeft:2}} source={back} /> | |||||
</TouchableOpacity> | </TouchableOpacity> | ||||
<View style={styles.pre_style4} /> | <View style={styles.pre_style4} /> | ||||
<Text style={styles.pre_style5}>Prescription</Text> | <Text style={styles.pre_style5}>Prescription</Text> | ||||
@@ -52,6 +52,7 @@ import call from '../assets/icons/call.png' | |||||
import person from '../assets/icons/person.png' | import person from '../assets/icons/person.png' | ||||
import pass from '../assets/icons/pass.png' | import pass from '../assets/icons/pass.png' | ||||
import email from '../assets/icons/email.png' | import email from '../assets/icons/email.png' | ||||
import back from '../assets/icons/back1.png' | |||||
class Register extends Component<Props> { | class Register extends Component<Props> { | ||||
constructor(props) { | constructor(props) { | ||||
super(props); | super(props); | ||||
@@ -218,17 +219,19 @@ class Register extends Component<Props> { | |||||
<Loader visible={isLoding} /> | <Loader visible={isLoding} /> | ||||
<View> | <View> | ||||
<View style={styles.reg_style1}> | <View style={styles.reg_style1}> | ||||
<TouchableOpacity | |||||
{/* <TouchableOpacity | |||||
style={styles.reg_style2} | style={styles.reg_style2} | ||||
onPress={this.handleBackButtonClick} | onPress={this.handleBackButtonClick} | ||||
activeOpacity={1} | activeOpacity={1} | ||||
> | > | ||||
<Icon | |||||
{/* <Icon | |||||
onPress={this.handleBackButtonClick} | onPress={this.handleBackButtonClick} | ||||
style={styles.reg_style3} | style={styles.reg_style3} | ||||
name="arrow-back" | name="arrow-back" | ||||
/> | |||||
</TouchableOpacity> | |||||
/> */} | |||||
{/* <Image | |||||
style={{width: 20,height: 20,backgroundColor: "white",marginVertical: 6,marginLeft:2}} source={back} /> | |||||
</TouchableOpacity> */} | |||||
<View style={styles.reg_style4} /> | <View style={styles.reg_style4} /> | ||||
<Text style={styles.reg_style5}>Register</Text> | <Text style={styles.reg_style5}>Register</Text> | ||||
</View> | </View> | ||||