$ docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ActivityIndicator from '@components/ActivityIndicator'; | |
| import Box from '@components/Box'; | |
| import { useNavigation } from '@react-navigation/native'; | |
| import React, { useEffect, useState } from 'react'; | |
| import { FlatList, RefreshControl } from 'react-native'; | |
| import { useDispatch, useSelector } from 'react-redux'; | |
| import * as Ducks from '../../ducks'; | |
| import Item from '../components/Item'; | |
| const VIEWABILITY_CONFIG = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ANDROID_BUILD_VERSION=30 | |
| # ANDROID_TOOLS_VERSION=30.0.3 | |
| # NODE_VERSION=14.x | |
| image: reactnativecommunity/react-native-android:5.1 | |
| pipelines: | |
| default: | |
| - step: | |
| name: Build Android | |
| caches: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: ravipoonia/fastlane-android:1.1 | |
| pipelines: | |
| pull-requests: | |
| develop: | |
| - step: | |
| name: "Build on docker and push to firebase using fastlane -DEV" | |
| size: 2x | |
| deployment: staging | |
| caches: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta name="description" content="redux-saga login example"> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-core/5.8.25/browser-polyfill.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/redux/4.0.5/redux.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/redux-saga/1.1.3/redux-saga.umd.min.js"></script> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| const withStorage = (WrappedComponent) => { | |
| class HOC extends React.Component { | |
| state = { | |
| localStorageAvailable: false, | |
| }; | |
| componentDidMount() { | |
| this.checkLocalStorageExists(); |