Advertisement
Reza_AJA

test

Oct 22nd, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // View Pertama Action Click Ke View Kedua
  2.  
  3. function promo(){
  4. this.props.navigation.navigate('ViewPromo');
  5. }
  6.  
  7. <TouchableOpacity
  8.     onpress={() => this.promo()}
  9. >
  10.     <Text>Cari Promo</Text>
  11. </TouchableOpacity>
  12.  
  13.  
  14. // View Kedua List Promo
  15.  
  16. function pakaiPromo() {
  17.     prmogbk <= contoh resposen yang saya dapat
  18.  
  19. if(success){
  20.     this.prop.navigation.navigate('ViewSebelumnya', {
  21.         kirimPromo:prmogbk
  22.     })
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement