-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
114 lines (102 loc) · 4.06 KB
/
App.js
File metadata and controls
114 lines (102 loc) · 4.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import React, {Component, useEffect, useLayoutEffect, createContext, useState, useContext, useRef} from 'react';
import {View, Text, Button, Animated, LogBox, DrawerLayoutAndroid, Dimensions, TextInput, Image} from 'react-native';
import { CustomColor } from './components/CustomColor';
import { dataShow } from './components/Search/Data';
import {Container, Dna} from './components/Dna';
import { FloatingButton } from './components/FloatingButton';
import { MultipleChoice } from './components/MultipleChoice/MultipleChoice';
import { Search } from './components/Search/Search';
import { Snake } from './components/Snake';
import { BlurEffectBackground } from './components/BlurEffectBackground';
import { BounceImage } from './components/BounceImage';
import { SlideWindow } from './components/SlideWindow';
import SlideShow from './components/SlideShow/SlideShow';
import { dataSlide } from './components/SlideShow/data';
import LoadingDribble from './components/LoadingScreen/LoadingDribble';
import ScrollCampaign from './components/ScrollCampaign/ScrollCampaign';
import data from './components/ScrollCampaign/data';
import HeaderFolding from './components/HeaderFolding/HeaderFolding';
import FloatingButtonScroll from './components/FloatingButtonScroll';
import HeaderWindowScroll from './components/HeaderWindowScroll/HeaderWindowScroll';
import LoadingType from './components/LoadingScreen/LoadingType';
import AnimationTextWelcome from './components/AnimationTextWelcome';
import FloatingButtonAnimated from './components/FloatingButtonAnimated';
import OverflowMenu from './components/OverflowMenu/OverflowMenu';
import HeaderImageFolding from './components/HeaderImageFolding/HeaderImageFolding';
import NotifAnimated from './components/NotifAnimated/NotifAnimated';
import ZoomImage from './components/Zoom/ZoomImage';
import TypeAndLoading from './components/TypeLoading/TypeAndLoading';
const App = () => {
return (
<View
style={{
flex: 1,
// justifyContent: 'center',
// alignItems: 'center',
backgroundColor: 'white',
}}>
{/* <Dna
size={50}
colorFirst={'red'}
ColorSecond={'blue'}
transisition={"yellow"}
/> */}
{/* <Snake
colorFirst={"blue"}
colorSecond={"red"}
transisition={"yellow"}
/> */}
{/* <CustomColor
activity={true}
colorFirst={'#aa00ff'}
colorSeccond={'#2962ff'}
colorThird={'#00bfa5'}
/> */}
{/* <FloatingButton /> */}
{/* <Search data={dataShow} /> */}
{/* <Image
source={{
uri: 'https://images.unsplash.com/photo-1637170556969-169f43457274?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=387&q=80',
}}
style={{
height: Dimensions.get('screen').height,
width: Dimensions.get('screen').width,
}}
/>
<BlurEffectBackground color={'#fff'} /> */}
{/* <BounceImage uri="https://cdn.kibrispdr.org/data/pin-map-png-0.png" /> */}
{/* <BounceImage image={require('./src/image/bounce.jpg')} /> */}
{/* <SlideWindow /> */}
{/* <SlideShow data={dataSlide} /> */}
{/* <LoadingDribble color={'red'} /> */}
{/* <ScrollCampaign data={data} distance={75} size={250} /> */}
{/* <HeaderFolding /> */}
{/* <FloatingButtonScroll /> */}
{/* <HeaderWindowScroll /> */}
{/* <LoadingType sizeLoading={15} /> */}
{/* <AnimationTextWelcome
title={'Hi'}
body={'Andik Script'}
/> */}
{/* <FloatingButtonAnimated
buttonFirst={'twitter'}
buttonSecond={'github'}
buttonThird={'reddit'}
/> */}
{/* <OverflowMenu /> */}
{/* <HeaderImageFolding
image={'https://tinyurl.com/3aubksna'}
/> */}
{/* <NotifAnimated
textNotif={'This is notification'}
/> */}
{/* <ZoomImage
src={
'https://s.kaskus.id/r540x540/images/2020/08/01/10900683_20200801104758.jpg'
}
/> */}
<TypeAndLoading />
</View>
);
};
export default App;