Skip to content

Commit e3d2c8c

Browse files
committed
myfirstCOmmit
0 parents  commit e3d2c8c

File tree

144 files changed

+49234
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+49234
-0
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
lerna-debug.log*
8+
.pnpm-debug.log*
9+
10+
# Diagnostic reports (https://nodejs.org/api/report.html)
11+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12+
13+
# Runtime data
14+
pids
15+
*.pid
16+
*.seed
17+
*.pid.lock
18+
19+
# Directory for instrumented libs generated by jscoverage/JSCover
20+
lib-cov
21+
22+
# Coverage directory used by tools like istanbul
23+
coverage
24+
*.lcov
25+
26+
# nyc test coverage
27+
.nyc_output
28+
29+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30+
.grunt
31+
32+
# Bower dependency directory (https://bower.io/)
33+
bower_components
34+
35+
# node-waf configuration
36+
.lock-wscript
37+
38+
# Compiled binary addons (https://nodejs.org/api/addons.html)
39+
build/Release
40+
41+
# Dependency directories
42+
node_modules/
43+
jspm_packages/
44+
.expo-shared
45+
.expo
46+
contest/
47+
utils/
48+
# Snowpack dependency directory (https://snowpack.dev/)
49+
web_modules/
50+
51+
# TypeScript cache
52+
*.tsbuildinfo
53+
54+
# Optional npm cache directory
55+
.npm
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Optional stylelint cache
61+
.stylelintcache
62+
63+
# Microbundle cache
64+
.rpt2_cache/
65+
.rts2_cache_cjs/
66+
.rts2_cache_es/
67+
.rts2_cache_umd/
68+
69+
# Optional REPL history
70+
.node_repl_history
71+
72+
# Output of 'npm pack'
73+
*.tgz
74+
75+
# Yarn Integrity file
76+
.yarn-integrity
77+
78+
# dotenv environment variable files
79+
.env
80+
.env.development.local
81+
.env.test.local
82+
.env.production.local
83+
.env.local
84+
85+
# parcel-bundler cache (https://parceljs.org/)
86+
.cache
87+
.parcel-cache
88+
89+
# Next.js build output
90+
.next
91+
out
92+
93+
# Nuxt.js build / generate output
94+
.nuxt
95+
dist
96+
97+
# Gatsby files
98+
.cache/
99+
# Comment in the public line in if your project uses Gatsby and not Next.js
100+
# https://nextjs.org/blog/next-9-1#public-directory-support
101+
# public
102+
103+
# vuepress build output
104+
.vuepress/dist
105+
106+
# vuepress v2.x temp and cache directory
107+
.temp
108+
.cache
109+
110+
# Docusaurus cache and generated files
111+
.docusaurus
112+
113+
# Serverless directories
114+
.serverless/
115+
116+
# FuseBox cache
117+
.fusebox/
118+
119+
# DynamoDB Local files
120+
.dynamodb/
121+
122+
# TernJS port file
123+
.tern-port
124+
125+
# Stores VSCode versions used for testing VSCode extensions
126+
.vscode-test
127+
128+
# yarn v2
129+
.yarn/cache
130+
.yarn/unplugged
131+
.yarn/build-state.yml
132+
.yarn/install-state.gz
133+
.pnp.*

App.js

Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
import React, {useState, useEffect} from "react";
2+
import { AppState, Subscription, Image} from 'react-native';
3+
import { NavigationContainer } from '@react-navigation/native';
4+
import { createNativeStackNavigator } from '@react-navigation/native-stack';
5+
import Home from './screens/Home';
6+
import SignIn from './screens/SignIn';
7+
import { AuthContextProvider } from './contest';
8+
import Profile from './screens/profile';
9+
import {createBottomTabNavigator} from '@react-navigation/bottom-tabs'
10+
import Details from './screens/Details' ;
11+
import Personal from './screens/Personal'
12+
import Business from './screens/Business'
13+
import flutterBank from './contest/flutterBank';
14+
import DropdownComponent from './contest/flutterBank'
15+
import AccountNumber from './contest/number';
16+
import Pickers from './contest/picker';
17+
import LoanSummary from './screens/Summary';
18+
import MyComponent from './screens/Waiting';
19+
import LoanGranted from './screens/LoanGranted';
20+
import LoanDisbursed from './screens/LoanDisbursed';
21+
import Headed from './screens/Headed';
22+
import Free from './screens/free';
23+
import ForgotPassword from "./screens/ForgotPassword";
24+
import PaymentScreen from "./screens/flutter";
25+
import {
26+
27+
signOut,
28+
getAuth,
29+
30+
} from "firebase/auth";
31+
import {getApp,initializeApp} from 'firebase/app';
32+
33+
34+
35+
36+
const Tab = createBottomTabNavigator()
37+
const Stack = createNativeStackNavigator();
38+
39+
40+
function App() {
41+
const apps = getApp();
42+
const auth = getAuth(apps);
43+
44+
45+
const logout = () => {
46+
return signOut(auth);
47+
48+
};
49+
useEffect(() => {
50+
// This function will be executed only on app launch
51+
logout()
52+
console.log('App launched!');
53+
}, []);
54+
// useEffect(() => {
55+
// Add an event listener to AppState changes
56+
// AppState.addEventListener('change', handleAppStateChange);
57+
// console.log('user just signed out appstate')
58+
// logout()
59+
// Clean up the event listener on unmount
60+
// return () => {
61+
// AppState.removeEventListener('change', handleAppStateChange);
62+
// };
63+
// }, []);
64+
65+
// const handleAppStateChange = (nextAppState) => {
66+
// if (nextAppState === 'background') {
67+
// console.log('user just signed out appstate')
68+
69+
// logout()
70+
// }
71+
// };
72+
73+
return (
74+
75+
76+
77+
78+
<NavigationContainer>
79+
<AuthContextProvider >
80+
<Stack.Navigator screenOptions={{
81+
82+
headerShown: true,
83+
headerStyle: {
84+
elevation:0,
85+
backgroundColor: '#F5F5F5',
86+
87+
headerTransparent: false,
88+
headerBackVisible: false,
89+
90+
},
91+
title:'',
92+
headerLayoutPreset: 'center',
93+
headerLeft: () => <Image source={require('./assets/flutterrebrand.png')}
94+
95+
style={{ width: 150, height: 37,alignSelf: 'center', alignItems: 'center', justifyContent: 'center',marginLeft:110}} />,
96+
headerShadowVisible: false,
97+
98+
99+
}}>
100+
101+
102+
<Stack.Screen name="Home" component={Home} />
103+
104+
<Stack.Screen name="profile" component={Profile} />
105+
<Stack.Screen name="SignIn" component={SignIn} />
106+
<Stack.Screen name="Business" component={Business} />
107+
<Stack.Screen name="Personal" component={Personal} />
108+
<Stack.Screen name="FlutterBank" component={flutterBank} />
109+
<Stack.Screen name="DropDown" component={DropdownComponent} />
110+
<Stack.Screen name="AccountNum" component={AccountNumber} />
111+
<Stack.Screen name="Pick" component={Pickers} />
112+
<Stack.Screen name="Summary" component={LoanSummary} />
113+
<Stack.Screen name='Waiting' component={MyComponent} />
114+
<Stack.Screen name='Granted' component={LoanGranted} />
115+
<Stack.Screen name='Disbursed' component={LoanDisbursed} />
116+
<Stack.Screen name='free' component={Free} />
117+
<Stack.Screen name='Password' component={ForgotPassword} />
118+
<Stack.Screen name='Payment' component={PaymentScreen} />
119+
120+
<Stack.Screen name='Welcomed' component={Headed}
121+
122+
options={{
123+
124+
headerShown: true,
125+
headerStyle: {
126+
elevation:0,
127+
backgroundColor: '#224b5f',
128+
129+
headerTransparent: false,
130+
headerBackVisible: false,
131+
132+
},
133+
title:'',
134+
headerLayoutPreset: 'center',
135+
headerLeft: () => <Image source={require('./assets/flutterrebrandwhite.png')}
136+
137+
style={{ width: 150, height: 37,alignSelf: 'center', alignItems: 'center', justifyContent: 'center',marginLeft:110}} />,
138+
headerShadowVisible: false,
139+
140+
141+
}} />
142+
<Stack.Screen name="Details" component={Details} />
143+
144+
145+
146+
147+
148+
149+
</Stack.Navigator>
150+
</AuthContextProvider>
151+
152+
</NavigationContainer>
153+
154+
155+
156+
)
157+
158+
}
159+
160+
export default App;
161+

app.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"expo": {
3+
"name": "Flutter Loans",
4+
"slug": "Flutter_Loans",
5+
"version": "1.0.0",
6+
"orientation": "portrait",
7+
"icon": "./assets/icon.png",
8+
"userInterfaceStyle": "light",
9+
"splash": {
10+
"image": "./assets/splagsh.png",
11+
"resizeMode": "contain",
12+
"backgroundColor": "#01566F"
13+
},
14+
"updates": {
15+
"fallbackToCacheTimeout": 1
16+
},
17+
"assetBundlePatterns": [
18+
"**/*"
19+
],
20+
"ios": {
21+
"supportsTablet": true
22+
},
23+
"android": {
24+
"adaptiveIcon": {
25+
"foregroundImage": "./assets/icon.png",
26+
"backgroundColor": "#FFFFFF"
27+
},
28+
"package": "com.awesome.flutterloans"
29+
},
30+
"web": {
31+
"favicon": "./assets/favicon.png"
32+
},
33+
"extra": {
34+
"eas": {
35+
"projectId": "63e98119-26df-42af-ab58-bbbb587ac5a0"
36+
}
37+
}
38+
}
39+
}

assets/Designer1.png

357 KB
Loading

assets/EyesClosed.png

1.11 KB
Loading

assets/EyesOpen.png

1015 Bytes
Loading

assets/Mobileloginpana.png

288 KB
Loading

assets/Password.png

658 Bytes
Loading

assets/Presentation1.png

229 KB
Loading

assets/Resetpassword-pana.png

255 KB
Loading

assets/Signuppana.png

309 KB
Loading

assets/adaptive-icon.png

41.3 KB
Loading

assets/animation/111547-text-animation (1).json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/117930-des1-text.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/29019-loading-animation.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/34357-loading-percent.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/58184-bank-credit-card-glow-animation.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/97890-loading-animation.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

assets/animation/98788-loading.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"v":"4.8.0","meta":{"g":"LottieFiles AE ","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":23,"w":500,"h":500,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[292.879,246.15,0],"to":[-17.836,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":11.5,"s":[185.86,246.15,0],"to":[0,0,0],"ti":[-17.836,0,0]},{"t":23,"s":[292.879,246.15,0]}],"ix":2},"a":{"a":0,"k":[-146.25,68.75,0],"ix":1},"s":{"a":0,"k":[374.035,374.035,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.594,0],[0,-7.594],[-7.594,0],[0,7.594]],"o":[[-7.594,0],[0,7.594],[7.594,0],[0,-7.594]],"v":[[0,-13.75],[-13.75,0],[0,13.75],[13.75,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.12941176470588237,0.7176470588235294,0.7725490196078432,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-146.25,68.75],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":-9.395,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":125,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[188.879,246.15,0],"to":[17.002,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":11.5,"s":[290.893,246.15,0],"to":[0,0,0],"ti":[17.002,0,0]},{"t":23,"s":[188.879,246.15,0]}],"ix":2},"a":{"a":0,"k":[-146.25,68.75,0],"ix":1},"s":{"a":0,"k":[374.035,374.035,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.594,0],[0,-7.594],[-7.594,0],[0,7.594]],"o":[[-7.594,0],[0,7.594],[7.594,0],[0,-7.594]],"v":[[0,-13.75],[-13.75,0],[0,13.75],[13.75,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.09019607843137255,0.3607843137254902,0.5764705882352941,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-146.25,68.75],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":-9.395,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":125,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[251,258,0],"ix":2},"a":{"a":0,"k":[1,8,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[518,524],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1,8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":125,"op":125,"st":0,"bm":0,"hidden":0}],"markers":[]}

assets/animation/99109-loading.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"v":"4.6.0","fr":30,"ip":0,"op":60,"w":200,"h":200,"nm":"loading_ring_medium","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"green ring 1","ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":0,"s":[0],"e":[360]},{"t":49.0000019958109}]},"p":{"a":0,"k":[100,100,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[200,200,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[54,54]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"st","c":{"a":0,"k":[0.10980392156862745,0.1411764705882353,0.27058823529411763,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.644],"y":[0]},"n":["0p667_1_0p644_0"],"t":10,"s":[0],"e":[100]},{"t":50.0000020365418}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":-1,"s":[0],"e":[100]},{"t":37.0000015070409}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":0,"op":50.0000020365418,"st":-1.00000004073083,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"flamingo ring 3","parent":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.785],"y":[1]},"o":{"x":[1],"y":[0]},"n":["0p785_1_1_0"],"t":17,"s":[14.2],"e":[360]},{"t":50.0000020365418}]},"p":{"a":0,"k":[0,0,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[54,54]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"st","c":{"a":0,"k":[0.9647058823529412,0.6627450980392157,0.3176470588235294,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":42,"s":[0],"e":[1]},{"t":44.0000017921567}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p833_1_0p333_0"],"t":20,"s":[0],"e":[1]},{"t":44.0000017921567}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":17.0000006924242,"op":44.0000017921567,"st":-1.00000004073083,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"flamingo ring 2","parent":1,"ks":{"o":{"a":0,"k":100},"r":{"a":1,"k":[{"i":{"x":[0.612],"y":[1]},"o":{"x":[1],"y":[0]},"n":["0p612_1_1_0"],"t":17,"s":[14.2],"e":[360]},{"t":50.0000020365418}]},"p":{"a":0,"k":[0,0,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[54,54]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"st","c":{"a":0,"k":[0.9647058823529412,0.6627450980392157,0.3176470588235294,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":42,"s":[0],"e":[13.7]},{"t":44.0000017921567}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p833_1_0p333_0"],"t":20,"s":[0],"e":[13.7]},{"t":44.0000017921567}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":17.0000006924242,"op":44.0000017921567,"st":-1.00000004073083,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"flaming ring 1","parent":1,"ks":{"o":{"a":0,"k":100},"r":{"a":0,"k":0},"p":{"a":0,"k":[0,0,0]},"a":{"a":0,"k":[0,0,0]},"s":{"a":0,"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[54,54]},"p":{"a":0,"k":[0,0]},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse"},{"ty":"st","c":{"a":0,"k":[0.9647058823529412,0.6627450980392157,0.3176470588235294,1]},"o":{"a":0,"k":100},"w":{"a":0,"k":6},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke"},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"mn":"ADBE Vector Group"},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[1],"y":[0]},"n":["0p667_1_1_0"],"t":8,"s":[0],"e":[100]},{"t":48.0000019550801}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[1],"y":[0]},"n":["0p667_1_1_0"],"t":-1,"s":[0],"e":[100]},{"t":37.0000015070409}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim"}],"ip":15.0000006109625,"op":44.0000017921567,"st":-1.00000004073083,"bm":0,"sr":1}]}

assets/animation/blue.json

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)