Suyash Srivastava il y a 3 ans
Parent
révision
f89e4176e1
2 fichiers modifiés avec 11 ajouts et 5 suppressions
  1. +4
    -1
      src/views/Prescription.js
  2. +7
    -4
      src/views/Register.js

+ 4
- 1
src/views/Prescription.js Voir le fichier

@@ -10,6 +10,7 @@ import axios from 'axios';
import { connect } from 'react-redux';
import { serviceActionPending, serviceActionError, serviceActionSuccess } from '../actions/PrescriptionActions';
import ProgressCircle from 'react-native-progress-circle';
import back from '../assets/icons/back1.png'
import LottieView from 'lottie-react-native';
class Prescription extends Component<Props> {

@@ -66,7 +67,9 @@ class Prescription extends Component<Props> {
<View>
<View style={styles.pre_style1}>
<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>
<View style={styles.pre_style4} />
<Text style={styles.pre_style5}>Prescription</Text>


+ 7
- 4
src/views/Register.js Voir le fichier

@@ -52,6 +52,7 @@ import call from '../assets/icons/call.png'
import person from '../assets/icons/person.png'
import pass from '../assets/icons/pass.png'
import email from '../assets/icons/email.png'
import back from '../assets/icons/back1.png'
class Register extends Component<Props> {
constructor(props) {
super(props);
@@ -218,17 +219,19 @@ class Register extends Component<Props> {
<Loader visible={isLoding} />
<View>
<View style={styles.reg_style1}>
<TouchableOpacity
{/* <TouchableOpacity
style={styles.reg_style2}
onPress={this.handleBackButtonClick}
activeOpacity={1}
>
<Icon
{/* <Icon
onPress={this.handleBackButtonClick}
style={styles.reg_style3}
name="arrow-back"
/>
</TouchableOpacity>
/> */}
{/* <Image
style={{width: 20,height: 20,backgroundColor: "white",marginVertical: 6,marginLeft:2}} source={back} />
</TouchableOpacity> */}
<View style={styles.reg_style4} />
<Text style={styles.reg_style5}>Register</Text>
</View>


Chargement…
Annuler
Enregistrer