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
const AWS = require('aws-sdk') | |
const fs = require('fs') | |
const Polly = new AWS.Polly({ | |
region: 'ap-south-1' | |
}) | |
const input = { | |
Text: "Hola, Buenas dias.", | |
OutputFormat: "ogg", |
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
/*This is an Example of Grid Image Gallery in React Native*/ | |
import * as React from 'react'; | |
//import React in our project | |
import { | |
Image, | |
TouchableOpacity, | |
Text, | |
View, | |
Modal, | |
StyleSheet, |