Tag: Gurukul Wisdom – Project Folder Setup


  • 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