Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
Sms2
SUBMITTED BY:
Guest
DATE:
July 10, 2023, 5:11 a.m.
FORMAT:
Text only
SIZE:
527 Bytes
Raw
Download
Tweet
HITS:
326
Go to comments
Report
import React from 'react';
import { View, Text, Image } from 'react-native';
const ReleaseNotesScreen = () => {
const releaseNotes = {
Version: '1.0.0',
ReleaseNotes: '⚠️TERMOS DE USO⚠️ \n ...',
ImageUrl: 'https://i.ibb.co/yPcWvMC/mine.png',
// outros campos do JSON
};
return (
<View>
<Text>{releaseNotes.ReleaseNotes}</Text>
<Image source={{ uri: releaseNotes.ImageUrl }} style={{ width: 200, height: 200 }} />
</View>
);
};
export default ReleaseNotesScreen;
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus