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 { ConfigContext } from '@expo/config'; | |
// eslint-disable-next-line no-console | |
// console.log('ENV', process.env); | |
// expands type in the vscode tooltip. | |
type ExpandTooltip<T> = T extends infer O ? { [K in keyof O]: O[K] } : never; | |
const EXPO_SDK = '51'; | |
const BINARY_ITERATION_FOR_SDK = '1'; // start with 1. CAN NOT BE 0. |
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/react-native-gifted-chat/lib/GiftedChat.js b/node_modules/react-native-gifted-chat/lib/GiftedChat.js | |
index 7f3f4b5..78ea7a1 100644 | |
--- a/node_modules/react-native-gifted-chat/lib/GiftedChat.js | |
+++ b/node_modules/react-native-gifted-chat/lib/GiftedChat.js | |
@@ -1,6 +1,13 @@ | |
import PropTypes from 'prop-types'; | |
import React from 'react'; | |
-import { Animated, Platform, StyleSheet, View, SafeAreaView, } from 'react-native'; | |
+import { | |
+ Animated, |
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Python: File with Terminal", | |
"type": "python", | |
"request": "launch", |
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 { | |
StyleSheet, | |
Text, | |
View, | |
Image | |
} from 'react-native'; | |
const styles = StyleSheet.create({ |
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
CloseExplorerFolder(win_title) { | |
WinGet, vwinID, List, ahk_class CabinetWClass | |
;MsgBox,0x1000,,there are %vWinID% windows of CabinetWClass open. | |
Loop, %vWinID% { | |
x := vWinID%A_Index% | |
WinGetTitle, wt, ahk_id %x% | |
if (wt == win_title) { | |
Winclose, ahk_class CabinetWClass | |
} | |
;msgBox,0x1000,, index=%a_Index% of %vWinID%`nwt=%wt% |