Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.65 KB | None | 0 0
  1. /** @format */
  2.  
  3. import React, { PureComponent } from "react";
  4. import { View, ScrollView, Text } from "react-native";
  5. import { Color, Styles } from "@common";
  6. import { Menu, NavBarLogo, Back } from "./IconNav";
  7.  
  8. export default class TermsAndCondition extends PureComponent {
  9. static navigationOptions = ({ navigation }) => {
  10. const headerStyle = navigation.getParam(
  11. "headerStyle",
  12. Styles.Common.toolbar()
  13. );
  14. const dark = navigation.getParam("dark", false);
  15. const isBack = navigation.getParam("isBack", false);
  16. return {
  17. headerTitle: NavBarLogo({ navigation }),
  18. headerLeft: isBack ? Back(navigation) : Menu(dark),
  19.  
  20. headerTintColor: Color.headerTintColor,
  21. headerStyle,
  22. headerTitleStyle: Styles.Common.headerStyle,
  23.  
  24. // use to fix the border bottom
  25. headerTransparent: true
  26. };
  27. };
  28.  
  29. render() {
  30. return (
  31. <View style={{ flex: 1, marginTop: 60, margin: 18 }}>
  32. <ScrollView>
  33. <Text
  34. style={{ textAlign: "center", fontWeight: "bold", fontSize: 18 }}
  35. >
  36. Welcome to Midway Supermarket
  37. </Text>
  38. <Text style={{ paddingVertical: 15 }}>
  39. {
  40. "Midway Supermarket was established in the year of 1962, in the Kingdom of Bahrain and evolved at the pace of its regional environment throughout the years with a particular focus on modern retail. Created by a humble and hardworking family, it is one of the oldest companies in the country which explains its excellent relationship with customers, and the strong brand recognition of the group.\n\
  41. \n\
  42. Starting as friendly neighbourhood store, 50 years into the future shows just how much we grew as a business. We currently have around 100 employees who have all based their work on our founding values of honesty, innovation, and friendliness. Our position in the Kingdom of Bahrain is pushing us to further develop our retail activities by reinforcing our brand visibility, and creating new formats under the Midway Supermarket brand.\n\
  43. \n\
  44. Our intention is to offer our customers the best of products at very competitive prices, to bestow extraordinary quality of service, and to grant a joyful shopping experience. We value all our customers, and all their wants and needs, as we would like to be the first to meet their requests.\n\
  45. \n\
  46. We pride ourselves on delivering the very best, and customising the total shopping experience through experienced staff, having quality products available to our customers, all while adhering to strict quality control and standards."
  47. }
  48. </Text>
  49. </ScrollView>
  50. </View>
  51. );
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement