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 { Image } from 'react-native' | |
import { | |
Container, | |
Content, | |
Card, | |
CardItem, | |
Thumbnail, | |
Text, |
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 Carousel, { Pagination, ParallaxImage, SliderEntry } from 'react-native-snap-carousel'; | |
import jsonData from '../StoriesData'; | |
import styles from '../Styles'; | |
import { Modal, Dimensions } from 'react-native'; | |
import { View, Text, Button, Icon } from 'native-base'; | |
const SLIDER_1_FIRST_ITEM = 1; | |
const sliderWidth = Dimensions.get('window').width; | |
const itemHeight = Dimensions.get('window').height; | |
class Carausal extends Component { |
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 { ScrollView, View, Text } from 'react-native'; | |
import { Thumbnail } from 'native-base'; | |
import styles from '../Styles'; | |
import { TouchableNativeFeedback } from 'react-native-gesture-handler'; | |
class StoriesComponent extends React.Component { | |
constructor(props) { | |
super(props); |
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 { View, Text } from 'react-native'; | |
import { Container, Content, Header, Left, Icon, Button, Body, Right, Title } from 'native-base'; | |
import Stories from '../../Components/Stories'; | |
const InstaView = (props) => { | |
const { openDrawer } = props | |
return ( | |
<Container> | |
<Header hasTabs> |
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 LocalizaionView from './LocalixationView'; | |
// import { ToastA/ndroid } from 'react-native'; | |
import { | |
Platform, | |
StyleSheet, | |
Text, | |
View, | |
Button, | |
FlatList, |
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 { Container, Content, Text, Button, Icon } from 'native-base'; | |
import { } from 'react-native'; | |
import styles from './Localizationstyles'; | |
import Languages from './languages.json'; | |
import I18n from "i18n-js"; | |
import { | |
View, | |
FlatList, | |
Slider, |
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 { Container, Content, Text, Button, Icon } from 'native-base'; | |
import { } from 'react-native'; | |
import styles from './Localizationstyles'; | |
import Languages from './languages.json'; | |
import I18n from "i18n-js"; | |
import { | |
View, | |
FlatList, | |
Slider, |
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
return ( | |
<View style={styles.scrollViewStyle}> | |
<Fragment> | |
<StatusBar barStyle="dark-content" /> | |
<Text style={styles.textTitle}>Welcome To React-Native QR Code Tutorial !</Text> | |
{!scan && !ScanResult && | |
<View style={styles.cardView} > | |
<Text numberOfLines={8} style={styles.descText}>{desccription}</Text> | |
<TouchableOpacity onPress={this.activeQR} style={styles.buttonTouchable}> |
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, Fragment } from 'react'; | |
import QRCodeScanner from 'react-native-qrcode-scanner'; | |
import styles from './scanStyle' | |
import { | |
TouchableOpacity, | |
Text, | |
StatusBar, | |
Linking, | |
View | |
} 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
import React, { Component } from 'react'; | |
import Scan from './scan'; | |
import SendSMS from 'react-native-sms' | |
import SmsAndroid from 'react-native-get-sms-android'; | |
class SendSMSContainer extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
message: '' |