├── 01 - Auth Provider ├── README.md ├── app.json ├── app │ ├── _layout.tsx │ ├── app │ │ ├── _layout.tsx │ │ └── home.tsx │ ├── index.tsx │ ├── login.tsx │ └── register.tsx ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── logo-with-text.png │ │ ├── logo.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash.png ├── babel.config.js ├── firebase │ └── index.ts ├── package-lock.json ├── package.json ├── providers │ └── authProvider.tsx ├── scripts │ └── reset-project.js └── tsconfig.json ├── 02 - Custom Bottom Nav Bar 01 ├── README.md ├── app.json ├── app │ ├── _layout.tsx │ ├── analytics.tsx │ ├── index.tsx │ ├── profile.tsx │ ├── search.tsx │ └── wallet.tsx ├── assets │ ├── fonts │ │ └── SpaceMono-Regular.ttf │ └── images │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ ├── partial-react-logo.png │ │ ├── react-logo.png │ │ ├── react-logo@2x.png │ │ ├── react-logo@3x.png │ │ └── splash.png ├── babel.config.js ├── components │ ├── CustomNavBar.tsx │ └── ItemList.tsx ├── package-lock.json ├── package.json ├── scripts │ └── reset-project.js └── tsconfig.json ├── 03 - custom-bottom-nav-bar-02 ├── README.md ├── app.json ├── app │ ├── _layout.tsx │ ├── cart.tsx │ ├── index.tsx │ ├── location.tsx │ ├── profile.tsx │ └── search.tsx ├── babel.config.js ├── components │ ├── CustomTabBar.tsx │ └── ItemList.tsx ├── package-lock.json ├── package.json ├── scripts │ └── reset-project.js └── tsconfig.json ├── 04-Animated-Floating-Action-Button ├── app │ ├── _layout.tsx │ └── index.tsx ├── components │ ├── AnimatedFAB.tsx │ └── Content.tsx └── package.json ├── 05-Meta-Ball-Loader ├── app │ ├── _layout.tsx │ └── index.tsx └── package.json └── 06-Animated-Input-Field ├── app └── index.tsx ├── components └── Input.tsx ├── package.json └── resources └── constants.ts /01 - Auth Provider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/README.md -------------------------------------------------------------------------------- /01 - Auth Provider/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app.json -------------------------------------------------------------------------------- /01 - Auth Provider/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/_layout.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/app/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/app/_layout.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/app/app/home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/app/home.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/index.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/app/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/login.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/app/register.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/app/register.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/favicon.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/icon.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/logo-with-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/logo-with-text.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/logo.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/react-logo.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /01 - Auth Provider/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/assets/images/splash.png -------------------------------------------------------------------------------- /01 - Auth Provider/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/babel.config.js -------------------------------------------------------------------------------- /01 - Auth Provider/firebase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/firebase/index.ts -------------------------------------------------------------------------------- /01 - Auth Provider/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/package-lock.json -------------------------------------------------------------------------------- /01 - Auth Provider/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/package.json -------------------------------------------------------------------------------- /01 - Auth Provider/providers/authProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/providers/authProvider.tsx -------------------------------------------------------------------------------- /01 - Auth Provider/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/scripts/reset-project.js -------------------------------------------------------------------------------- /01 - Auth Provider/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/01 - Auth Provider/tsconfig.json -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/README.md -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app.json -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/_layout.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/analytics.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/index.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/profile.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/search.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/app/wallet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/app/wallet.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/fonts/SpaceMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/fonts/SpaceMono-Regular.ttf -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/adaptive-icon.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/favicon.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/icon.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/partial-react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/partial-react-logo.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/react-logo.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/react-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/react-logo@2x.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/react-logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/react-logo@3x.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/assets/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/assets/images/splash.png -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/babel.config.js -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/components/CustomNavBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/components/CustomNavBar.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/components/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/components/ItemList.tsx -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/package-lock.json -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/package.json -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/scripts/reset-project.js -------------------------------------------------------------------------------- /02 - Custom Bottom Nav Bar 01/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/02 - Custom Bottom Nav Bar 01/tsconfig.json -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/README.md -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app.json -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/_layout.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/cart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/cart.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/index.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/location.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/location.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/profile.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/app/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/app/search.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/babel.config.js -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/components/CustomTabBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/components/CustomTabBar.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/components/ItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/components/ItemList.tsx -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/package-lock.json -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/package.json -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/scripts/reset-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/scripts/reset-project.js -------------------------------------------------------------------------------- /03 - custom-bottom-nav-bar-02/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/03 - custom-bottom-nav-bar-02/tsconfig.json -------------------------------------------------------------------------------- /04-Animated-Floating-Action-Button/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/04-Animated-Floating-Action-Button/app/_layout.tsx -------------------------------------------------------------------------------- /04-Animated-Floating-Action-Button/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/04-Animated-Floating-Action-Button/app/index.tsx -------------------------------------------------------------------------------- /04-Animated-Floating-Action-Button/components/AnimatedFAB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/04-Animated-Floating-Action-Button/components/AnimatedFAB.tsx -------------------------------------------------------------------------------- /04-Animated-Floating-Action-Button/components/Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/04-Animated-Floating-Action-Button/components/Content.tsx -------------------------------------------------------------------------------- /04-Animated-Floating-Action-Button/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/04-Animated-Floating-Action-Button/package.json -------------------------------------------------------------------------------- /05-Meta-Ball-Loader/app/_layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/05-Meta-Ball-Loader/app/_layout.tsx -------------------------------------------------------------------------------- /05-Meta-Ball-Loader/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/05-Meta-Ball-Loader/app/index.tsx -------------------------------------------------------------------------------- /05-Meta-Ball-Loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/05-Meta-Ball-Loader/package.json -------------------------------------------------------------------------------- /06-Animated-Input-Field/app/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/06-Animated-Input-Field/app/index.tsx -------------------------------------------------------------------------------- /06-Animated-Input-Field/components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/06-Animated-Input-Field/components/Input.tsx -------------------------------------------------------------------------------- /06-Animated-Input-Field/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/06-Animated-Input-Field/package.json -------------------------------------------------------------------------------- /06-Animated-Input-Field/resources/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Harisene/codewithharitha/HEAD/06-Animated-Input-Field/resources/constants.ts --------------------------------------------------------------------------------