Skip to content

Instantly share code, notes, and snippets.

View gidox's full-sized avatar

Arquimedes gidox

View GitHub Profile
@gidox
gidox / javascript-recipe.txt
Last active June 30, 2020 21:20
react-native-recipe
Who to watch:
- Software mansion https://www.youtube.com/channel/UCKgDsBDpYdZf2mbRzcEC8FA/channels
- Can it be done in react native serie's https://www.youtube.com/watch?v=1d8a_NZ9l1E&list=PLkOyNuxGl9jwARbZbl1n_Tehu_BPPWumn
- Ben awad (javscript entusiast) https://www.youtube.com/user/99baddawg
- Callstack Engineers https://www.youtube.com/channel/UCbvLih553T7f5OAGTfbsJkQ
Who to follows:
- Dan Abramov(React&javascript god)
- Evan Beacon(Lead expo& react native web) https://twitter.com/Baconbrix
import React from 'react';
import PropTypes from 'prop-types';
import { Animated, View, StyleSheet, Dimensions, TouchableOpacity } from 'react-native';
import moment from 'moment';
import { Thumbnail } from 'native-base';
import Text from '../theme/Text';
import CountDownTimer from './CountDownReact';
import i18n from '../translations/i18n';
const locale = i18n.currentLocale().split('-')[0];