importReact from 'react';import{Text,View} from 'react-native';import{WebView} from 'react-native-webview';const html =`<h1>التطبيقجاهزالآن</h1>`;functionSplashScreen(){return<Text>جاريالتحميل</Text>;}functionApp(){const[ready, setReady]=React.useState(false);React.useEffect(()=>{
setTimeout(()=>{
setReady(true);},4000);});return(<View>{
ready ?<WebView originWhitelist={['*']} source={{ html }}/>:<SplashScreen/>}</View>);}exportdefaultApp;
السؤال
عمر سالم2
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.