Skip to content

Instantly share code, notes, and snippets.

@balinux
Last active October 5, 2019 15:23
Show Gist options
  • Save balinux/51811565dda15703197a5075f4792ef0 to your computer and use it in GitHub Desktop.
Save balinux/51811565dda15703197a5075f4792ef0 to your computer and use it in GitHub Desktop.
react native tips and trick
kumpulan tips react native
@balinux
Copy link
Author

balinux commented Feb 15, 2019

@balinux
Copy link
Author

balinux commented Feb 18, 2019

react native image overflow hidden
untuk meyembunyikan image dibalik container
https://github.com/react-native-training/react-native-elements/issues/884

@balinux
Copy link
Author

balinux commented Feb 28, 2019

#pengalaman menggunakan RN FIrebase

  1. repo https://github.com/rohitmodi12/firebasePushnotificaiton
  2. video tutorial rnFirebase : https://www.youtube.com/watch?v=nHvw1mcaOs0
  3. video tutorial server push notification firebase : https://www.youtube.com/watch?v=6uZ7Fw8AVlk
  4. push server : http://pushtry.com/

@balinux
Copy link
Author

balinux commented May 2, 2019

membuat shadow effet di react native

shadowColor: "#000",
shadowOffset: {
width: 0,
height: 4,
},
shadowOpacity: 0.30,
shadowRadius: 4.65,

elevation: 8,

link generator : https://ethercreative.github.io/react-native-shadow-generator/

@balinux
Copy link
Author

balinux commented May 16, 2019

@balinux
Copy link
Author

balinux commented May 22, 2019

@balinux
Copy link
Author

balinux commented May 26, 2019

dokumentasi dan link belajar React native beserta contohnya

@balinux
Copy link
Author

balinux commented Jul 15, 2019

React native Map

catatan : setelah release app aplikasi juga membutuhkan Sidik jari sertifikat SHA-1 dari playstore di bagian Sertifikat penandatanganan aplikasi

@balinux
Copy link
Author

balinux commented Sep 13, 2019

infinite scroll react hook

refeerensi
example code

@balinux
Copy link
Author

balinux commented Oct 2, 2019

run emulator form CLI

move to dir C:\Users\USDI_RIO\AppData\Local\Android\Sdk\emulator

List Emulator

emulator -list-avds

Run Emulator

emulator -avd @name of emulator

add to windows path (optional)

  • go to environment variables
  • clint environment variables
  • system variables clict path variables
  • new and paste ``C:\Users\USDI_RIO\AppData\Local\Android\Sdk\emulator`

@balinux
Copy link
Author

balinux commented Oct 5, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment