• Gurukul Wisdom – List of Govt Exams

    List Of Govt Exams In India (1) UNION PUBLIC SERVICE COMMISSION (UPSC) Civil Services Examination (IAS, IPS, IFS, IRS, etc.) Engineering Services Examination (IES/ESE) Indian Forest Service (IFoS) Examination Combined Defence Services (CDS) – I & II National Defence Academy & Naval Academy (NDA/NA) Central Armed Police Forces (CAPF) – (Assistant Commandants) Indian Economic Service (IES) Indian Statistical Service (ISS) Combined Medical Services (CMS) Geoscientist Examination (2) STAFF SELECTION COMMISSION (SSC) SSC CGL (Combined Graduate Level) SSC CHSL (Combined Higher Secondary Level) SSC MTS (Multi-Tasking Staff) SSC CPO (Central Police Organisation) SSC GD (General Duty Constable) SSC JE (Junior Engineer) SSC

    Read More

  • Gurukul Wisdom – Installing Required Dependencies

    Installing Required Dependencies Install The Required Libraries: # Core Navigation npm install @react-navigation/native @react-navigation/bottom-tabs @react-navigation/native-stack npm install @react-navigation/stack # React Navigation Dependencies npm install react-native-screens react-native-safe-area-context # Firebase npm install @react-native-firebase/app @react-native-firebase/auth @react-native-firebase/firestore # State Management npm install @reduxjs/toolkit react-redux redux-persist @react-native-async-storage/async-storage npm install react-native-safe-area-context # UI Components & Icons # Install only the icon families you need npm install @react-native-vector-icons/ionicons npm install @react-native-vector-icons/material-icons npm install @react-native-vector-icons/fontawesome npm install react-native-svg react-native-svg-transformer # Video Player npm install react-native-video # Progress Components npm install react-native-circular-progress # Form & Validation npm install formik yup # Utilities npm install axios moment lodash # Development

    Read More

  • Gurukul Wisdom – Project Folder Setup In React Native

    Project Folder Set Up Using React Native Project Directory Structure: GurukulWisdom/ ├── src/ │ ├── navigation/ │ │ ├── BottomTabNavigator.tsx │ │ └── RootNavigator.tsx │ ├── screens/ │ │ ├── Home/ │ │ │ ├── HomeScreen.tsx │ │ │ ├── components/ │ │ │ │ ├── ExamSelector.tsx │ │ │ │ ├── ContinueWatching.tsx │ │ │ │ ├── TodaysFocus.tsx │ │ │ │ ├── ProgressCard.tsx │ │ │ │ └── WhyThisWorks.tsx │ │ ├── Syllabus/ │ │ │ ├── SyllabusScreen.tsx │ │ │ ├── SubjectDetailScreen.tsx │ │ │ └── components/ │ │ │ ├── SubjectCard.tsx │ │ │ └── TopicItem.tsx

    Read More

  • Gurukul Wisdom – How To Set Up Android App Icon

    How To Set Up Android App Icon

    Read More

  • Gurukul Wisdom – Project Set Up Using React Native.

    Project Folder Set Up Using React Native Installing Required Software Tools(One Time) : STEP 1: Configure Android Environment Variables STEP 2: Create Android Emulator (AVD) STEP 3: Install React Native CLI npm install -g react-native-cli npx react-native – version STEP 4: Create React Native Project npx @react-native-community/cli@latest init GurukulWisdomSourceCode cd GurukulWisdomSourceCode code . STEP 5: Start Metro Server npx react-native start STEP 6: Run App on Android Emulator npx react-native run-android STEP 7: Connect VS Code to Emulator

    Read More

  • Gurukul Wisdom – Frontend Design Architecture

    Front End Designing Architecture

    Read More

  • Gurukul Wisdom – User Authentication Using React Native Library

    Firebase Android Authentication Process npm install @react-native-firebase/app npm install @react-native-firebase/auth npm uninstall @react-native-firebase/firestore android/app/google-services.json ios/GoogleService-Info.plist import { firebase } from '@react-native-firebase/app'; export default firebase; import React, { createContext, useEffect, useState } from 'react'; import auth from '@react-native-firebase/auth'; export const AuthContext = createContext(); export const AuthProvider = ({ children }) => { const [user, setUser] = useState(null); const [loading, setLoading] = useState(true); useEffect(() => { const unsubscribe = auth().onAuthStateChanged(user => { setUser(user); setLoading(false); }); return unsubscribe; }, []); return ( <AuthContext.Provider value={{ user }}> {!loading && children} </AuthContext.Provider> ); }; import auth from '@react-native-firebase/auth'; export const login = (email, password) =>

    Read More

  • Gurukul Wisdom – Firebase Android Authentication

    Firebase Android Authentication Process Sign In With Pre Built UI: Simple Step By Step Flow:

    Read More

  • Gurukul Wisdom – Firebase Authentication Process

    Firebase Authentication Process Important Links: https://www.youtube.com/shorts/ZubQvXwa0r0 https://firebase.google.com/docs/auth?_gl=1*1vmfzos*_up*MQ..&gclid=Cj0KCQiAg63LBhDtARIsAJygHZ6N-CdP_ZHvhezQujtGsUecwmlzSllfcPzLcKpGQZcNMYo-pddYLM0aAuExEALw_wcB&gclsrc=aw.ds&gbraid=0AAAAADpUDOisZz2b0cM7-I0HofHIuVQHV https://youtu.be/ELB0W7f_Ib4 Firebase Authentication Process: https://firebase.google.com/ Understanding Firebase Authentication Process: Where Do I Get Started ? Users In Firebase Project.

    Read More

  • Gurukul Wisdom – User Authentication Process

    User Authentication Process

    Read More