Skip to content

Commit

Permalink
Merge pull request #32 from SystangoTechnologies/feature/bottonTextIssue
Browse files Browse the repository at this point in the history
Feature/botton text issue
  • Loading branch information
amourya-systango authored May 25, 2021
2 parents 233f587 + b0f2b1e commit 8cc749e
Show file tree
Hide file tree
Showing 7 changed files with 1,703 additions and 1,473 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export default class App extends React.Component{
{SignInWithAppleButton({
buttonStyle: styles.appleBtn,
callBack: this.appleSignIn,
buttonText: "Sign Up With Apple",
})}
</View>)

Expand All @@ -80,7 +81,8 @@ const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
alignItems: 'center',
backgroundColor: 'white',
},
appleBtn: { height: 44, width: 200 }
});
Expand Down
1 change: 1 addition & 0 deletions example/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export default class App extends React.Component {
{SignInWithAppleButton({
buttonStyle: styles.appleBtn,
callBack: this.appleSignIn,
buttonText: 'Login with Apple '
})}
</View>
);
Expand Down
10 changes: 8 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,8 @@ PODS:
- React-cxxreact (= 0.61.1)
- React-jsi (= 0.61.1)
- React-jsinspector (0.61.1)
- react-native-apple-authentication (1.0.8):
- React
- React-RCTActionSheet (0.61.1):
- React-Core/RCTActionSheetHeaders (= 0.61.1)
- React-RCTAnimation (0.61.1):
Expand Down Expand Up @@ -236,6 +238,7 @@ DEPENDENCIES:
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- react-native-apple-authentication (from `../node_modules/react-native-apple-authentication`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
Expand All @@ -250,7 +253,7 @@ DEPENDENCIES:
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
trunk:
- boost-for-react-native

EXTERNAL SOURCES:
Expand Down Expand Up @@ -282,6 +285,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
React-jsinspector:
:path: "../node_modules/react-native/ReactCommon/jsinspector"
react-native-apple-authentication:
:path: "../node_modules/react-native-apple-authentication"
React-RCTActionSheet:
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation:
Expand Down Expand Up @@ -321,6 +326,7 @@ SPEC CHECKSUMS:
React-jsi: 61ff417c95e6c3af50fb96399037e80752fb5ce7
React-jsiexecutor: ee45274419eb95614bbbadb98e20684c5f29996e
React-jsinspector: 574d597112f9ea3d1b717f6fb62aef764c70dd6f
react-native-apple-authentication: be849b8aefe45de190f8125126ef8cf8b02674ec
React-RCTActionSheet: af4d951113b1e068bb30611f91b984a7a73597ff
React-RCTAnimation: 4f518d70bb6890b7c3d9d732f84786d6693ca297
React-RCTBlob: 072a4888c08de0eef6d04eaa727d25e577e6ff26
Expand All @@ -335,4 +341,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 79310af6b976c356911a8a833e9b99c3399fdda3

COCOAPODS: 1.7.2
COCOAPODS: 1.10.1
38 changes: 28 additions & 10 deletions example/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,31 @@
* @format
*/

module.exports = {
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
};
const blacklist = require('metro-config/src/defaults/blacklist');

module.exports = {
resolver: {
blacklistRE: blacklist([
/node_modules\/.*\/node_modules\/react-native\/.*/,
])
},
transformer: {
getTransformOptions: async () => ({
transform: {
experimentalImportSupport: false,
inlineRequires: false,
},
}),
},
};

// module.exports = {
// transformer: {
// getTransformOptions: async () => ({
// transform: {
// experimentalImportSupport: false,
// inlineRequires: false,
// },
// }),
// },
// };
Loading

0 comments on commit 8cc749e

Please sign in to comment.