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
//: A UIKit based Playground for presenting user interface | |
import UIKit | |
import PlaygroundSupport | |
class MyCollectionVC: UICollectionViewController, UICollectionViewDelegateFlowLayout { | |
fileprivate let itemsPerRow = 3 |
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
[ | |
{ | |
"id": "1", | |
"district": [ | |
{ | |
"id": "taplejung", | |
"eng": "Taplejung", | |
"nep": "ताप्लेजुङ" | |
}, | |
{ |
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
use_frameworks! | |
# Pods for Connect | |
def allPods | |
pod 'Alamofire','~> 3.4.1' | |
pod 'IQKeyboardManager' | |
pod 'FMDB', '~> 2.6' | |
pod 'Toast-Swift', '~> 1.3.0' | |
pod 'Fabric' |
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
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
* @flow | |
*/ | |
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
StyleSheet, |
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
var ComponentWithDefaultProps = React.createClass({ | |
getDefaultProps: function() { | |
return { | |
value: 'default value' | |
}; | |
} | |
}); | |
------------------ or the other way ---------------------- |
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
'use strict' | |
import { Dimensions } from 'react-native' | |
import React, {View, DeviceEventEmitter} from 'react-native' | |
class SomeScene extends React.Component { | |
constructor (props) { | |
super(props) | |
this.state = { | |
visibleHeight: Dimensions.get('window').height | |
} | |
} |
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
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
*/ | |
import React, { Component } from 'react'; | |
import { | |
AppRegistry, | |
} from 'react-native'; |