Last active
April 19, 2019 20:37
-
-
Save stanleykerr/e41d6b72aa7af8ad833931eb8c555525 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| var options = { | |
| style: { | |
| container: { | |
| background: 'rgb(236, 240, 241)', | |
| padding: 10, | |
| borderRadius: 10 | |
| }, | |
| weekContainer: { | |
| marginTop: 10, | |
| borderRadius: 10 | |
| }, | |
| unselected: { | |
| label: { | |
| fontWeight: 300, | |
| fontSize: 13, | |
| transition: 'font-size .25s ease-in-out' | |
| }, | |
| slider: { | |
| background: 'rgb(46, 204, 113)' | |
| }, | |
| week: [ | |
| { | |
| background: 'white', | |
| color: 'gray', | |
| justifyContent: 'center', | |
| padding: 7, | |
| fontSize: 14 | |
| }, | |
| { | |
| background: 'white', | |
| color: 'gray', | |
| justifyContent: 'center', | |
| padding: 7, | |
| fontSize: 14 | |
| } | |
| ] | |
| }, | |
| selected: { | |
| label: { | |
| fontWeight: 400, | |
| fontSize: 15, | |
| transition: 'all .25s ease-in-out' | |
| }, | |
| slider: { | |
| background: 'rgb(52, 152, 219)' | |
| }, | |
| week: [ | |
| { | |
| background: 'rgb(46, 204, 113)', | |
| color: 'white', | |
| fontWeight: 500, | |
| justifyContent: 'center', | |
| padding: 10, | |
| fontSize: 15 | |
| }, | |
| { | |
| background: 'rgb(52, 152, 219)', | |
| color: 'white', | |
| fontWeight: 500, | |
| justifyContent: 'center', | |
| padding: 10, | |
| fontSize: 15 | |
| } | |
| ] | |
| } | |
| }, | |
| text: { | |
| twoWeeksOn: 'Two weeks On', | |
| everyOtherWeek: 'Every other Week', | |
| weeks: [ | |
| '1st Week', | |
| '2nd Week', | |
| '3rd Week', | |
| '4th Week' | |
| ] | |
| }, | |
| options: { | |
| rounded: true, | |
| binaryOutput: false, | |
| soundUrl: 'https://storage.googleapis.com/mrble-assets/click.wav' | |
| } | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment