Skip to content

Instantly share code, notes, and snippets.

View jazibjafri's full-sized avatar
🚀

Jazib Jafri jazibjafri

🚀
View GitHub Profile
@jazibjafri
jazibjafri / how-to-add-splash-screen-react-native-android.md
Created June 21, 2020 20:29
How to Add Splash Screen to React Native for Android

This gist is created by following the tutorial How to Add a Splash Screen to a React Native App (iOS and Android) by @spencercarli. So thanks to him for putting it all together.

This gist just combines the steps explained in the tutorial with the fixes I needed for some errors, in order to make it work.

Steps to add splash screen

1. Add your image to android/app/src/main/res/mipmap-*

Add the same image to all mipmap folders and make sure all of them are of same name.

@jazibjafri
jazibjafri / .eslintrc.js
Created July 13, 2020 20:34
Common eslint rules
var OFF = 0,
WARN = 1,
ERROR = 2;
module.exports = exports = {
root: true,
env: {
es6: true,
browser: true,
node: true,