armadiazrino

Untitled

Jun 22nd, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. import React from 'react';
  2. import {
  3. View,
  4. Text,
  5. SafeAreaView,
  6. Image,
  7. Dimensions,
  8. ScrollView,
  9. } from 'react-native';
  10. import PlayButton from '../../components/PlayButton';
  11. import TransparentBackHeader from '../../components/TransparentBackHeader';
  12. import style from './style';
  13.  
  14. const {width: deviceWidth} = Dimensions.get('window');
  15.  
  16. const MovieDetail = props => {
  17. return (
  18. <ScrollView contentContainerStyle={style.container}>
  19. <SafeAreaView style={style.headerContainer}>
  20. <TransparentBackHeader onPressBack={() => props.navigation.goBack()} />
  21. </SafeAreaView>
  22. <Image
  23. source={{
  24. uri: 'https://m.media-amazon.com/images/M/MV5BODZlYjQ4NzYtZTg1MC00NGY4LTg4NjQtNGE3ZjRkMjk3YjMyXkEyXkFqcGdeQXVyMTkxNjUyNQ@@._V1_Ratio0.7910_AL_.jpg',
  25. width: deviceWidth,
  26. height: deviceWidth * 1.2,
  27. }}
  28. />
  29. <View style={style.contentContainer}>
  30. <PlayButton style={style.playButton} />
  31. <Text style={style.titleText}>{'Stranger Things'}</Text>
  32. <Text style={style.subtitle}>{'8.7'}</Text>
  33. <Text style={style.subtitle}>{`Year: 2016`}</Text>
  34. <Text style={style.descriptionText}>
  35. {
  36. 'Young Will Byers is cycling home from a Dungeons & Dragons campaign at a friends house, when a terrifying figure suddenly appears, Will tries to escape and hide, but the Monster abducts him to an alternate dimension'
  37. }
  38. </Text>
  39. </View>
  40. </ScrollView>
  41. );
  42. };
  43.  
  44. export default MovieDetail;
  45.  
Advertisement
Add Comment
Please, Sign In to add comment