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
{ | |
"type": "label", | |
"text": "Comments {{stringcol0}}", | |
"style": { | |
"padding": "20", | |
"font": "HelveticaNeue-CondensedBold", | |
"size": "14", | |
"color": "#000000" | |
}, | |
"href": { |
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
{ | |
"@": "https://raw.githubusercontent.com/Jasonette/Jasonpedia/gh-pages/demo.json" | |
} |
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
{ | |
"squadName": "Super hero squad", | |
"homeTown": "Metro City", | |
"formed": 2016, | |
"secretBase": "Super tower", | |
"active": true, | |
"members": [ | |
{ | |
"name": "Molecule Man", | |
"age": 29, |
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
"templates": { | |
"body": { | |
"sections": [{ | |
"items": { | |
"{{#each $jason.sheets[1]}}": { | |
"type":"horizontal", | |
"style": { | |
"padding": "10", | |
"font": "HelveticaNeue-Bold", | |
"size": "15" |
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
"templates": { | |
"body": { | |
"sections": [{ | |
"items": { | |
"{{#each $jason.sheets[1]}}": { | |
"type":"horizontal", | |
"style": { | |
"padding": "10", | |
"font": "HelveticaNeue-Bold", |
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
{ | |
"$jason": { | |
"head": { | |
"data": { | |
"members": [ | |
{ | |
"restaurant": "Italian", | |
"menu":[{ | |
"breakfast":"burger", | |
"launch":"hotdog" |
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
import UIKit | |
import MediaPlayer | |
import Photos | |
@objc public protocol ImagePickerDelegate: class { | |
func wrapperDidPress(imagePicker: ImagePickerController, images: [UIImage]) | |
func doneButtonDidPress(imagePicker: ImagePickerController, images: [UIImage]) | |
func cancelButtonDidPress(imagePicker: ImagePickerController) | |
} |
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
import React, { PropTypes } from 'react' | |
import { Image,View,ScrollView, Text } from 'react-native' | |
import { connect } from 'react-redux' | |
import Actions from '../Actions/Creators' | |
import Routes from '../Navigation/Routes' | |
import Swiper from 'react-native-swiper' | |
import LinearGradient from 'react-native-linear-gradient'; | |
import { Metrics } from '../Themes/' | |
// Styles |
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
import React, { PropTypes } from 'react' | |
import { View,ScrollView, Text } from 'react-native' | |
import { connect } from 'react-redux' | |
import Actions from '../Actions/Creators' | |
import Routes from '../Navigation/Routes' | |
import Swiper from 'react-native-swiper' | |
// Styles | |
import styles from './Styles/IntroPageStyle' |