Advertisement
zidniryi

Text

Mar 3rd, 2020
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. <!-- HTML generated using hilite.me --><div style="background: #ffffff; overflow:auto;width:auto;border:solid gray;border-width:.1em .1em .1em .8em;padding:.2em .6em;"><pre style="margin: 0; line-height: 125%"><span style="color: #008800; font-weight: bold">import</span> <span style="color: #333333">*</span> <span style="color: #008800; font-weight: bold">as</span> React <span style="color: #008800; font-weight: bold">from</span> <span style="background-color: #fff0f0">&#39;react&#39;</span>;
  2. <span style="color: #008800; font-weight: bold">import</span> { Text, View, StyleSheet } <span style="color: #008800; font-weight: bold">from</span> <span style="background-color: #fff0f0">&#39;react-native&#39;</span>;
  3.  
  4. export default <span style="color: #008800; font-weight: bold">class</span> <span style="color: #BB0066; font-weight: bold">App</span> extends React<span style="color: #333333">.</span>Component {
  5. render() {
  6. <span style="color: #008800; font-weight: bold">return</span> (
  7. <span style="color: #333333">&lt;</span>View style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>container}<span style="color: #333333">&gt;</span>
  8. <span style="color: #333333">&lt;</span>Text style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>bold}<span style="color: #333333">&gt;</span>Hello Am Bold<span style="color: #333333">&lt;/</span>Text<span style="color: #333333">&gt;</span>
  9. <span style="color: #333333">&lt;</span>Text style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>italic}<span style="color: #333333">&gt;</span>Hello Am Italic<span style="color: #333333">&lt;/</span>Text<span style="color: #333333">&gt;</span>
  10. <span style="color: #333333">&lt;</span>Text style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>underline}<span style="color: #333333">&gt;</span>Hello Am UnderLine<span style="color: #333333">&lt;/</span>Text<span style="color: #333333">&gt;</span>
  11. <span style="color: #333333">&lt;</span>Text style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>big}<span style="color: #333333">&gt;</span>Helo Iam Big<span style="color: #333333">&lt;/</span>Text<span style="color: #333333">&gt;</span>
  12. <span style="color: #333333">&lt;</span>Text style<span style="color: #333333">=</span>{styles<span style="color: #333333">.</span>bigColor}<span style="color: #333333">&gt;</span>Helo Iam Big And Have Color<span style="color: #333333">&lt;/</span>Text<span style="color: #333333">&gt;</span>
  13. <span style="color: #333333">&lt;/</span>View<span style="color: #333333">&gt;</span>
  14. );
  15. }
  16. }
  17.  
  18. const styles <span style="color: #333333">=</span> StyleSheet<span style="color: #333333">.</span>create({
  19. container: {
  20. flex: <span style="color: #0000DD; font-weight: bold">1</span>,
  21. justifyContent: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  22. paddingTop: <span style="color: #0000DD; font-weight: bold">20</span>,
  23. backgroundColor: <span style="background-color: #fff0f0">&#39;#ecf0f1&#39;</span>,
  24. padding: <span style="color: #0000DD; font-weight: bold">8</span>,
  25. },
  26. bold: {
  27. fontSize: <span style="color: #0000DD; font-weight: bold">14</span>,
  28. fontWeight: <span style="background-color: #fff0f0">&#39;bold&#39;</span>,
  29. textAlign: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  30. },
  31. italic: {
  32. fontStyle: <span style="background-color: #fff0f0">&#39;italic&#39;</span>,
  33. textAlign: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  34. },
  35. underline: {
  36. fontSize: <span style="color: #0000DD; font-weight: bold">14</span>,
  37. textAlign: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  38. textDecorationLine: <span style="background-color: #fff0f0">&#39;underline&#39;</span>,
  39. },
  40. big: {
  41. fontSize: <span style="color: #0000DD; font-weight: bold">25</span>,
  42. textAlign: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  43. },
  44. bigColor: {
  45. fontSize: <span style="color: #0000DD; font-weight: bold">25</span>,
  46. textAlign: <span style="background-color: #fff0f0">&#39;center&#39;</span>,
  47. color: <span style="background-color: #fff0f0">&#39;blue&#39;</span>,
  48. },
  49. });
  50. </pre></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement