React Native ios Splash Screen With Storyboard Get link Facebook X Pinterest Email Other Apps December 02, 2021 Your First screen looks like this in xcodeimport imageView to set background Image in splashn scren please add constraintsYour screen looks like this Get link Facebook X Pinterest Email Other Apps Comments
Fibonacci series program in c language December 31, 2018 #include<stdio.h> #include<conio.h> void main() { int i,a=0,b=1,c,n; clrscr(); printf("Enter the limits:"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("%d ",a); c=a+b; a=b; b=c; } getch(); } Read more
Table in HTML December 16, 2018 <html> <head> <title>my table</title> <head> <body> <center> <table border="1" cellspacing="0" width="500"> <tr> <th colspan="6"><font size="80">Time table</font></th> </tr> <tr> <th rowspan="6">hours</th> <th>mon</th> <th>tue</th> <th>wed</th> <th>thu</th> <th>fri</th> </tr> <tr> <td>Science</td> <td>maths</td> <td>Science</td> <td>maths</td> <td>arts</td> </tr><!-- prepared by vishal Rathod --> <tr> <td>Social</td> <td>History</td> <td>English</td> <td>Social</td> <td>Sports</td> ... Read more
react-native multiselect dropdown May 08, 2021 1. index.js file const [ salesPersonCount , setSalesPersonCount ] = useState ( 0 ); const [ salesPersonArray , setSalesPersonArray ] = useState ([]); const [ selectModalVisible , setSelectModalVisible ] = useState ( false ); return ( < MultiSelect selectModalVisible = { selectModalVisible } ... Read more
Comments
Post a Comment