import React, {useState} from 'react'; import { View, StyleSheet, Dimensions, ScrollView, Text, Pressable, Image, } from 'react-native'; import tw from 'tailwind-react-native-classnames'; import Header from '../../components/Header'; import bgQr from './assets/bgQr.png'; import qrIcon from './assets/qr.png'; import alertIcon from './assets/alert.png'; import bookIcon from './assets/book.png'; const width = Dimensions.get('window').width; function Activation(props) { const [formData, setFormData] = useState({ title: null, department: null, message: null, file: null, }); const onChange = (name, value) => { setFormData({...formData, [name]: value}); }; return (
دانش آموز گرامی پس از خرید فیزیکی کتاب، یک کارت فعالسازی در درون کتاب قرار داده شده که شما می‌توانید با وارد کردن کد در قسمت زیر و یا اسکن کد QR با دوربین موبایل خود اقدام به فعالسازی امکانات ویژه برای کتاب خود نمائید ); } // Later on in your styles.. const styles = StyleSheet.create({ contentContainerStyle: { paddingBottom: 50, alignItems: 'flex-end', }, container: { width: Dimensions.get('window').width, backgroundColor: 'white', flexDirection: 'column', paddingVertical: 5, paddingHorizontal: 10, }, }); export default Activation;