View remote_url.js
const url = `https://api.coinlore.net/api/coin/markets/?id=${coinId}`; |
View dependencies
npm install @react-navigation/native @react-navigation/stack | |
npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view | |
View reverseWord.js
function reverseWord(word) { | |
let newWord = ''; | |
for (var i = word.length -1; i > -1; i--) { | |
newWord += word[i]; | |
} | |
return newWord; |
View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script id="jsbin-javascript"> |
View index.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> |
View swipe_example.js
import React, { PureComponent } from 'react'; | |
import { | |
View, | |
Text, | |
TouchableOpacity, | |
Platform, | |
StyleSheet, | |
Dimensions, | |
PanResponder, | |
Animated |
View gist:8e35260011f94a036d67cdd992ce39f1
package com.platzi.platzi.downloadManager | |
import android.arch.lifecycle.LifecycleOwner | |
import android.arch.lifecycle.Observer | |
import android.os.Environment | |
import android.util.Log | |
import androidx.work.* | |
import com.facebook.react.bridge.* | |
import java.io.File |
View 1.srt
WEBVTT | |
1 | |
00:00:00,540 --> 00:00:04,760 | |
Vas a escribir tu primera línea de código | |
y aprender a programar. | |
2 | |
00:00:04,900 --> 00:00:07,740 | |
Lo primero que necesito que hagas |
View carousel.js
import React, { Component } from 'react'; | |
import { | |
View, | |
TextInput, | |
Text, | |
TouchableOpacity, | |
ScrollView, | |
StyleSheet, | |
Dimensions, | |
Animated |
NewerOlder