This file contains 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
#To view the page go here: http://langadv.myshopify.com/pages/spanish. In the top right corner click enter password which is arcoiris11 | |
<h3>Arcoiris Level 1</h3> | |
<a name="arcoiris1"></a> | |
<div data-embed_type="product" data-shop="langadv.myshopify.com" data-product_name="Arcoiris Level 1 Spanish Workbook & Audio CD" data-product_handle="arcoiris-level-1-spanish-workbook-cd" data-has_image="true" data-display_size="compact" data-redirect_to="product" data-buy_button_text="Arcoiris 1" data-button_background_color="7db461" data-button_text_color="ffffff" data-variant_id="4094347589"></div> | |
<a href="https://langadv.myshopify.com/products/arcoiris-level-1-spanish-workbook-cd?channel=buy_button&referer=http%3A%2F%2Flangadv.myshopify.com%2Fpages%2Fspanish&variant=4094347589"><script type="text/javascript">// <![CDATA[ | |
document.getElementById('ShopifyEmbedScript') || document.write('<script type="text/javascript" src="https://widgets.shopifyapps.com/assets/widgets/embed/client.js" id="ShopifyEmbedScrip |
This file contains 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
// IN ORDER TO USE THIS, YOU NEED TWO THINGS | |
// 1. Your firebase config, to be replaced on line 12 | |
// 2. Your Doorman public project ID, to be replaced on line 27. (Go to https://app.doorman.cool to find it.) | |
import * as React from 'react'; | |
import { DoormanProvider, AuthGate } from 'react-native-doorman' | |
import AuthStack from './Stack' // <-- made in step #2 😇 | |
// initialize firebase |
This file contains 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
// IN ORDER TO USE THIS, YOU NEED TWO THINGS | |
// 1. Your firebase config, to be replaced on line 13 | |
// 2. Your Doorman public project ID, to be replaced on line 30. (Go to https://app.doorman.cool to find it.) | |
import * as React from 'react'; | |
import AuthStack from './Stack' // <-- made in step #2 😇 | |
import { DoormanProvider, AuthGate } from 'react-native-doorman' | |
import { createAppContainer } from 'react-navigation' | |
import { Text } from 'react-native' |
This file contains 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' | |
import { useAuthGate } from 'react-native-doorman' | |
class LoadingScreen extends React.Component { | |
componentDidMount() { | |
const { loading, user } = this.props | |
// ...navigate here | |
} |
This file contains 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
// electron/main/index.js | |
// in your expo project, after following the docs instructions, run: | |
// yarn expo-electron customize | |
// then set your electron/main/index.js to look like this | |
import { BrowserWindow, Tray, app } from 'electron' | |
import * as path from 'path' | |
import { format as formatUrl } from 'url' | |
import debug from 'electron-debug' |
This file contains 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
// web | |
import P, { ArrowContainer } from 'react-tiny-popover' | |
import React from 'react' | |
export default ({ | |
visible = false, | |
position, | |
onClose, | |
children, | |
content = null, |
This file contains 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
diff --git a/node_modules/expo-dev-launcher/plugin/build/withDevLauncher.js b/node_modules/expo-dev-launcher/plugin/build/withDevLauncher.js | |
index 04c1d7d..a166618 100644 | |
--- a/node_modules/expo-dev-launcher/plugin/build/withDevLauncher.js | |
+++ b/node_modules/expo-dev-launcher/plugin/build/withDevLauncher.js | |
@@ -20,7 +20,7 @@ const DEV_LAUNCHER_ON_NEW_INTENT = ` | |
`; | |
const DEV_LAUNCHER_WRAPPED_ACTIVITY_DELEGATE = `DevLauncherController.wrapReactActivityDelegate(this, () -> $1);`; | |
const DEV_LAUNCHER_ANDROID_INIT = 'DevLauncherController.initialize(this, getReactNativeHost());'; | |
-const DEV_LAUNCHER_POD_IMPORT = "pod 'expo-dev-launcher', path: '../node_modules/expo-dev-launcher', :configurations => :debug"; | |
+const DEV_LAUNCHER_POD_IMPORT = "pod 'expo-dev-launcher', path: '../../../node_modules/expo-dev-launcher', :configurations => :debug"; |
This file contains 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 useNativeSWR from 'swr' | |
import { useRef } from 'react' | |
// inspired by https://github.com/vercel/swr/discussions/456 | |
export default function useSWR(key, fetcher, options = {}) { | |
const { cachePolicy, ...opts } = options | |
const random = useRef(new Date()) | |
return useNativeSWR( | |
() => { |
Here are my attempts to use webpack 5 with Expo's Next.js integration.
Next v10.2
uses webpack5
by default. However, this breaks @expo/next-adapater
.
In order to test / reproduce this, I added this PR to my Expo + Next.js monorepo starter: nandorojo/expo-next-monorepo#1
OlderNewer