Advertisement
Guest User

reactnative

a guest
Jan 18th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. import React, { Component } from "react";
  2. import { View, StyleSheet, Image, TouchableOpacity, Text } from "react-native";
  3. export default class TopicType extends Component {
  4. render() {
  5. return (
  6. <View style={styles.root}>
  7. <View style={styles.rect1}>
  8. <Image
  9. style={styles.eveyone}
  10. source={require("../assets/324234Asset_24xxxhdpi.png")}
  11. />
  12.  
  13. <Image
  14. style={styles.some}
  15. source={require("../assets/324234Asset_24xxxhdpi.png")}
  16. />
  17.  
  18. <Image
  19. style={styles.image1}
  20. source={require("../assets/Logo_Nipiologo.png")}
  21. />
  22. </View>
  23. <View style={styles.buttonmolecule}>
  24. <TouchableOpacity style={styles.buttonBorder} />
  25. <View style={styles.continueAtom}>
  26. <Image
  27. style={styles.image2}
  28. source={require("../assets/next.png")}
  29. />
  30.  
  31. <Text style={styles.text1}>Continue</Text>
  32. </View>
  33. </View>
  34. <Text style={styles.text2}>
  35. In this type of topic you have to select the groupmembers that you
  36. wish to exclude from the newtopic.Those members will have no knowledge
  37. that thisnew topic has been created.
  38. </Text>
  39. </View>
  40. );
  41. }
  42. }
  43.  
  44. const styles = StyleSheet.create({
  45. root: { backgroundColor: "white", flex: 1 },
  46. rect1: {
  47. left: 59.55,
  48. top: 163.56,
  49. width: 255.72,
  50. height: 116.17,
  51. position: "absolute",
  52. flexDirection: "row",
  53. justifyContent: "space-between",
  54. alignItems: "center"
  55. },
  56.  
  57. eveyone: { width: 52.97, height: 60.99 },
  58. some: { width: 52.97, height: 60.99 },
  59. image1: { width: 52.99, height: 60.99 },
  60. buttonmolecule: {
  61. left: 62.22,
  62. top: 630.32,
  63. width: 242.53,
  64. height: 62.62,
  65. position: "absolute"
  66. },
  67.  
  68. buttonBorder: {
  69. width: 242.58,
  70. height: 62.65,
  71. borderWidth: "4",
  72. borderColor: "rgba(255,164,0,1)",
  73. borderRadius: "17",
  74. position: "absolute",
  75. top: 0,
  76. left: 0
  77. },
  78.  
  79. continueAtom: {
  80. width: 179.79,
  81. height: 41.94,
  82. flexDirection: "row-reverse",
  83. alignItems: "center",
  84. justifyContent: "space-around",
  85. position: "absolute",
  86. top: 10.34,
  87. left: 31.36
  88. },
  89.  
  90. image2: { width: 34.98, height: 41.95 },
  91. text1: {
  92. width: 67.81,
  93. height: 16,
  94. backgroundColor: "transparent",
  95. textAlign: "right"
  96. },
  97.  
  98. text2: {
  99. backgroundColor: "transparent",
  100. top: 327.82,
  101. left: 41.04,
  102. position: "absolute",
  103. textAlign: "center",
  104. lineHeight: 27,
  105. letterSpacing: 0,
  106. width: 286.24,
  107. height: 197.67
  108. }
  109. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement