-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.js
More file actions
31 lines (29 loc) · 1.69 KB
/
Constants.js
File metadata and controls
31 lines (29 loc) · 1.69 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
import Temp from "./Screens/Temp";
import TaskList from "./Screens/TaskList"; // IDEA 1 implementation
import Info from "./Screens/Info"; // Info screen for this app users????
import CoffeeShop from "./Screens/CoffeeShop"; // A cafeteria shop app
import Vehical from "./Screens/Vehical"; // Vehical(car) showcase app design
import Snapchat from "./Screens/Snapchat"; // Snapchat stories translation...
import Login from "./Screens/Login"; // A login animation like door opening....
import SvgWithScrollView from "./Screens/SvgWithScrollView"; // Animation with scroll and svg....
import SvgAnimations from "./Screens/SvgAnimations"; // Svg animation with wave and timing......
import Cards from "./Screens/Cards"; // Card based animations....
import StrokeAnimation from "./Extra/StrokeAnimation"; // Text to svg animations.....
import SpotTube from "./Screens/SpotTube"; // IDEA 2 implementation
// IDEA: 1. Create a todo(CALENDER) app. Maybe if possible try to create a FULL STACK app.
// IDEA: 2. Create a music and video playing app. Combine SPOTIFY and YOUTUBE transitions.
export const SCREENS = [
{ name: "Info", component: Info },
{ name: "CoffeeShop", component: CoffeeShop },
{ name: "Vehical", component: Vehical },
{ name: "Login", component: Login },
{ name: "SpotTube", component: SpotTube },
{ name: "Snapchat", component: Snapchat },
{ name: "Cards", component: Cards },
{ name: "TaskList", component: TaskList },
{ name: "SvgWithScrollView", component: SvgWithScrollView },
{ name: "SvgAnimations", component: SvgAnimations },
{ name: "StrokeAnimation", component: StrokeAnimation },
//Add above this line....temp should always be at the end.
{ name: "Temp", component: Temp },
];