RuleScreen.jsx 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import * as WebBrowser from 'expo-web-browser';
  2. import * as React from 'react';
  3. import * as Application from 'expo-application';
  4. import { Div, Button, Image, Text, Avatar, Icon } from 'react-native-magnus';
  5. import { ScrollView } from 'react-native-gesture-handler';
  6. import { useTranslation } from 'react-i18next';
  7. import useModel from 'flooks';
  8. import User from '../../flooks/User';
  9. import Header from '../../components/Header';
  10. export default function RuleScreen() {
  11. const { logout } = useModel(User, []);
  12. const { t } = useTranslation();
  13. return (
  14. <>
  15. <Header title={t('yin-si-tiao-kuan')} />
  16. <Div
  17. bg="white"
  18. mt={10}
  19. alignItems="center"
  20. pt={20}
  21. pb={10}
  22. borderColor="gray200"
  23. borderBottomWidth={1}
  24. >
  25. <Text fontSize="sm">{t('yin-si-zheng-ce')}</Text>
  26. </Div>
  27. <ScrollView>
  28. <Div p={10} bg="white">
  29. <Text fontSize="sm" color="gray300">
  30. 您的订单已经被取消收款方老司机的发链接SDK溜老司机
  31. 的上路考订水房间了圣诞节弗兰克斯家电快溜缝胶看楼上的甲方 看了圣诞节
  32. 放凌空加施蒂利克福建省浪蝶狂蜂监考老师的加菲看楼上的积分 了开机啥的
  33. 敖德萨所多
  34. </Text>
  35. </Div>
  36. </ScrollView>
  37. </>
  38. );
  39. }