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 from 'react'; | |
import { ImageEditor, Button, Image, View } from 'react-native'; | |
import { ImagePicker } from 'expo'; | |
export default class ImagePickerExample extends React.Component { | |
state = { | |
image: null, | |
}; | |
render() { |
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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" /> | |
</head> | |
<style> | |
.carousel-inner>.item>img, .carousel-inner>.item>a>img { | |
display: block; | |
max-width: 100%; | |
line-height: 1; | |
width: 100%; |
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
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
*/ | |
#import "AppDelegate.h" |
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 { Navigation } from 'react-native-navigation'; | |
import LoginScreen from './LoginScreen'; | |
import RegisterScreen from './RegisterScreen'; | |
import DrawerScreen from './DrawerScreen'; | |
import DashboardScreen from './DashboardScreen'; | |
import ListingScreen from './ListingScreen'; |
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 { Navigation } from 'react-native-navigation'; | |
import { registerScreens } from './screens'; | |
registerScreens(); | |
Navigation.startSingleScreenApp({ | |
screen: { | |
navBarHidden: true, | |
screen: 'idcms.ListingScreen', |
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, { Component } from 'react'; | |
import { | |
StyleSheet, | |
Text, | |
TextInput, | |
View, | |
TouchableOpacity, | |
Alert, | |
Button, | |
Image, |
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 { Navigation } from 'react-native-navigation'; | |
import { registerScreens } from './screens'; | |
registerScreens(); | |
Navigation.startSingleScreenApp({ | |
screen: { | |
navBarHidden:true, | |
screen: 'idcms.LoginScreen', // unique ID registered with Navigation.registerScreen |
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 { Navigation } from 'react-native-navigation'; | |
import { registerScreens } from './screens'; | |
registerScreens(); | |
Navigation.startSingleScreenApp({ | |
screen: { | |
navBarHidden: true, | |
screen: 'idcms.LoginScreen', // unique ID registered with Navigation.registerScreen |
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
package com.example; | |
import android.support.annotation.Nullable; | |
import com.facebook.react.ReactPackage; | |
import com.reactnativenavigation.NavigationApplication; | |
import com.oblador.vectoricons.VectorIconsPackage; | |
import com.facebook.CallbackManager; | |
import com.facebook.FacebookSdk; | |
import com.facebook.reactnative.androidsdk.FBSDKPackage; |
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
package com.example; | |
import com.reactnativenavigation.controllers.SplashActivity; | |
import android.content.Intent; | |
public class MainActivity extends SplashActivity { | |
@Override | |
public void onActivityResult(int requestCode, int resultCode, Intent data) { | |
super.onActivityResult(requestCode, resultCode, data); | |
MainApplication.getCallbackManager().onActivityResult(requestCode, resultCode, data); |