forked from beefe/react-native-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged in CLT-728 (pull request beefe#63)
CLT-728 * 1. change grey color in Content theme to the true V3 grey color, and used it for login/register backgrund instead of light blue * 2. -Change default date as 1990;01;01 only in Register 3 (not in ProfileScreen because the user already choosed his birthday in Register3 before) -removed border in date in Register3 and ProfileScreen * 3. - Add icon mail/password from V3 and replaced default icons in LoginScreen by them - icon/field aligned * 4. -Added Grey background for email item -Aligned items in Profile Screen (same height for each items) * changed 修正 to 修正する in Profile Screen * -Reduced a little creditcard font size (user infos) - * update default birthday value in registerForm.js * refacto to camelcase var names in Images.js
- Loading branch information
1 parent
13503bd
commit aa53ef1
Showing
22 changed files
with
124 additions
and
68 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
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
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 |
---|---|---|
@@ -1,17 +1,37 @@ | ||
import { StyleSheet } from 'react-native' | ||
import { Metrics } from '../../Themes' | ||
import { Metrics, Colours } from '../../Themes' | ||
|
||
const labelWidth = Metrics.screenWidth * 0.34 | ||
export default StyleSheet.create({ | ||
const labelWidth = Metrics.screenWidth * 0.35 | ||
export default { | ||
item: { | ||
paddingTop: Metrics.baseMargin, | ||
paddingBottom: Metrics.baseMargin, | ||
minHeight: Metrics.tripleSection, | ||
marginLeft: 0, | ||
paddingLeft: Metrics.mediumBaseMargin, | ||
}, | ||
itemDisabled: { | ||
paddingTop: Metrics.baseMargin, | ||
paddingBottom: Metrics.baseMargin, | ||
minHeight: Metrics.tripleSection, | ||
marginLeft: 0, | ||
paddingLeft: Metrics.mediumBaseMargin, | ||
backgroundColor: Colours.clintalLightGrey, | ||
}, | ||
label: { | ||
paddingTop: Metrics.baseMargin, | ||
width: labelWidth, | ||
}, | ||
input: { | ||
width: Metrics.screenWidth - labelWidth, | ||
marginRight: Metrics.smallMargin, | ||
} | ||
}) | ||
}, | ||
dateText: { | ||
dateInput: { | ||
borderWidth: 0, | ||
}, | ||
dateText: { | ||
fontSize: 18, | ||
alignSelf: 'flex-start', | ||
}, | ||
}, | ||
} |
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.
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
Oops, something went wrong.