/* @flow */ import * as React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; import { Title, Caption, Paragraph, Card, CardCover, CardActions, CardContent, Button, withTheme, } from 'react-native-paper'; import type { Theme } from 'react-native-paper/types'; type Props = { theme: Theme, }; class CardExample extends React.Component { static title = 'Card'; render() { const { theme: { colors: { background }, }, } = this.props; return ( Abandoned Ship The Abandoned Ship is a wrecked ship located on Route 108 in Hoenn, originally being a ship named the S.S. Cactus. The second part of the ship can only be accessed by using Dive and contains the Scanner. Berries Omega Ruby Dotted around the Hoenn region, you will find loamy soil, many of which are housing berries. Once you have picked the berries, then you have the ability to use that loamy soil to grow your own berries. These can be any berry and will require attention to get the best crop. ); } } const styles = StyleSheet.create({ container: { flex: 1, }, content: { padding: 4, }, }); export default withTheme(CardExample);