File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " react-native-sqlite-explorer" ,
3- "version" : " 0.1.11 " ,
3+ "version" : " 0.1.12 " ,
44 "description" : " Explorer for react-native-sqlite-storage library database inside react native app" ,
55 "source" : " ./src/index.tsx" ,
66 "main" : " ./lib/commonjs/index.js" ,
Original file line number Diff line number Diff line change 1- import { useEffect , useRef } from 'react' ;
1+ import React , { useEffect , useRef } from 'react' ;
22import { Animated , Easing , View } from 'react-native' ;
33
44const AnimateState = {
@@ -38,7 +38,16 @@ const Loader = () => {
3838 const stopAnimate = ( ) => value . stopAnimation ( ) ;
3939
4040 return (
41- < View style = { { flex : 1 } } >
41+ < View
42+ style = { {
43+ flex : 1 ,
44+ position : 'absolute' ,
45+ backgroundColor : '#ffffff60' ,
46+ width : '100%' ,
47+ height : '100%' ,
48+ zIndex : 20 ,
49+ } }
50+ >
4251 < Animated . Image
4352 source = { require ( '../../assets/reload.png' ) }
4453 style = { {
@@ -48,6 +57,7 @@ const Loader = () => {
4857 marginBottom : 'auto' ,
4958 marginLeft : 'auto' ,
5059 marginRight : 'auto' ,
60+ padding : 10 ,
5161 } }
5262 />
5363 </ View >
You can’t perform that action at this time.
0 commit comments