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
| /** | |
| * Sample React Native App | |
| * https://github.com/facebook/react-native | |
| * @flow | |
| */ | |
| import React, { Component } from 'react'; | |
| import { | |
| AppRegistry | |
| } from 'react-native'; |
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
| /** | |
| * Sample React Native App | |
| * https://github.com/facebook/react-native | |
| * @flow | |
| */ | |
| import React, { Component } from 'react'; | |
| import { | |
| AppRegistry, | |
| StyleSheet, |
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
| const categories = [{"name": "Afghan", "code": "afghani"}, | |
| {"name": "African", "code": "african"}, | |
| {"name": "American, New", "code": "newamerican"}, | |
| {"name": "American, Traditional", "code": "tradamerican"}, | |
| {"name": "Arabian", "code": "arabian"}, | |
| {"name": "Argentine", "code": "argentine"}, | |
| {"name": "Armenian", "code": "armenian"}, | |
| {"name": "Asian Fusion", "code": "asianfusion"}, | |
| {"name": "Asturian", "code": "asturian"}, | |
| {"name": "Australian", "code": "australian"}, |
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 Foundation | |
| import AWSCognito | |
| import Lock | |
| import JWTDecode | |
| class LoginManager { | |
| let provider: AWSCognitoCredentialsProvider | |
| init() { | |
| AWSLogger.defaultLogger().logLevel = AWSLogLevel.None | |
| self.provider = AWSCognitoCredentialsProvider.init(regionType: AWSRegionType.USEast1, identityPoolId: CognitoConfig.CognitoPoolID) |
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
| using UnityEngine; | |
| using System.Collections; | |
| using System.IO; | |
| namespace TaiNgo | |
| { | |
| [ExecuteInEditMode] | |
| public class Activator : MonoBehaviour { |