Skip to content

Instantly share code, notes, and snippets.

View Moistbobo's full-sized avatar
🐢

Kevin Pang Moistbobo

🐢
View GitHub Profile
{"address":"18032bc4f086f94700c0667eb5ed05732bbe06c6","pub_key":"03f3caec950e387817250de490381f35d746768c19e3835976c8121aca21db9852","signature":"88ff8a8c004bf83c2312b378efd42883d92b508af0ed4085c83b588df7d8685d75dcf824beb7ce5e1872a4a40198bbd863acb3b83c3c9f05b81bd61e4e5f7470","value":"6d6f697374626f626f"}
@Moistbobo
Moistbobo / reference.md
Last active March 29, 2022 07:42
Useful frontend packages
@Moistbobo
Moistbobo / react-native-picker-select+8.0.4.patch
Created January 11, 2022 04:21
react-native-picker-select android togglePicker patch-package
diff --git a/node_modules/react-native-picker-select/src/index.js b/node_modules/react-native-picker-select/src/index.js
index bcbc93e..9908f06 100644
--- a/node_modules/react-native-picker-select/src/index.js
+++ b/node_modules/react-native-picker-select/src/index.js
@@ -9,13 +9,13 @@ export default class RNPickerSelect extends PureComponent {
static propTypes = {
onValueChange: PropTypes.func.isRequired,
items: PropTypes.arrayOf(
- PropTypes.shape({
- label: PropTypes.string.isRequired,
@Moistbobo
Moistbobo / gist:cfd7490d965928f398f226e67df79e25
Created October 9, 2021 09:16
RN - IOS GoogleInfo.plist build phase copy script
PATH_TO_CONFIG=$SRCROOT/Config/GoogleService-Info-$PRODUCT_BUNDLE_IDENTIFIER.plist
FILENAME_IN_BUNDLE=GoogleService-Info.plist
BUILD_APP_DIR=${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app
echo cp $PATH_TO_CONFIG "$BUILD_APP_DIR/$FILENAME_IN_BUNDLE"
cp $PATH_TO_CONFIG "$BUILD_APP_DIR/$FILENAME_IN_BUNDLE"