-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Poonam Ghewande <[email protected]> Co-authored-by: Ajay Jadhav <[email protected]> Co-authored-by: Sai Ranjit Tummalapalli <[email protected]> Co-authored-by: Amit Padmani <[email protected]>
- Loading branch information
1 parent
0e106e8
commit 792c542
Showing
44 changed files
with
2,611 additions
and
607 deletions.
There are no files selected for viewing
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
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
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
import { StyleSheet } from 'react-native' | ||
import { widthPercentageToDP as wp, heightPercentageToDP as hp } from 'react-native-responsive-screen' | ||
|
||
export const styles = StyleSheet.create({ | ||
container: { | ||
height: hp('100%'), | ||
width: wp('100%'), | ||
paddingTop: hp('3%'), | ||
padding: hp('1%'), | ||
}, | ||
headerText: { | ||
alignSelf: 'center', | ||
marginBottom: hp('2.5%'), | ||
justifyContent: 'center', | ||
color: '#1F4EAD', | ||
paddingBottom: hp('2%'), | ||
fontSize: 28, | ||
}, | ||
backgroundImage: { | ||
height: 245, | ||
width: 343, | ||
alignSelf: 'center', | ||
}, | ||
|
||
Image: { | ||
width: 78, | ||
height: 78, | ||
flexShrink: 0, | ||
position: 'absolute', | ||
right: 100, | ||
top: 70, | ||
left: 132, | ||
bottom: 0, | ||
}, | ||
qrImage: { | ||
width: wp('21%'), | ||
height: wp('21%'), | ||
flexShrink: 0, | ||
position: 'absolute', | ||
right: wp('20%'), | ||
top: hp('12.5%'), | ||
left: wp('37.5%'), | ||
}, | ||
bodyText: { | ||
marginTop: hp('2.5%'), | ||
display: 'flex', | ||
width: wp('80%'), | ||
flexDirection: 'column', | ||
flexShrink: 0, | ||
fontSize: hp('2.5%'), | ||
textAlign: 'center', | ||
color: '#2289F7', | ||
}, | ||
descriptionText: { | ||
alignSelf: 'center', | ||
marginHorizontal: wp('1%'), | ||
}, | ||
startedButtonContainer: { | ||
marginTop: 'auto', | ||
margin: wp('5%'), | ||
}, | ||
guideImages: { | ||
alignItems: 'center', | ||
}, | ||
ScrollView: { | ||
flex: 1, | ||
padding: hp('0.5%'), | ||
}, | ||
endPageContainer: { | ||
height: '100%', | ||
justifyContent: 'center', | ||
}, | ||
}) |
Oops, something went wrong.