{"id":25899328,"url":"https://github.com/likeur/first-expo-app","last_synced_at":"2026-02-13T22:06:46.490Z","repository":{"id":274017141,"uuid":"920499116","full_name":"Likeur/first-expo-app","owner":"Likeur","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-26T20:40:32.000Z","size":408,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T17:11:13.126Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Likeur.png","metadata":{"files":{"readme":"Readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-22T09:05:11.000Z","updated_at":"2025-01-27T18:02:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"bd59fe0d-794c-4b80-8f9b-caec1ce53474","html_url":"https://github.com/Likeur/first-expo-app","commit_stats":null,"previous_names":["likeur/first-expo-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Likeur/first-expo-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Likeur%2Ffirst-expo-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Likeur%2Ffirst-expo-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Likeur%2Ffirst-expo-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Likeur%2Ffirst-expo-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Likeur","download_url":"https://codeload.github.com/Likeur/first-expo-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Likeur%2Ffirst-expo-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274113090,"owners_count":25224335,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-03T01:28:01.918Z","updated_at":"2026-02-13T22:06:46.425Z","avatar_url":"https://github.com/Likeur.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## My First expo application\n\n### What It Does\nThis is a mobile application built using Expo and React Native that use some expo packages such us expo-camera, expo-media-library, expo-audio, expo-location, react-community/netinfo, expo-contact and others to render it in different screen accross the application.\n\n- NB: This is an academic project as we create it with the professor help\n\n### Key Features\n- Camera feature : \n    - if permission to access the camera is granted, the app will take pictures and store it to your files and galery\n    - You can flip between front and back camera when needed\n\n- Record feature : \n    - if permission to access the recorder is granted, the app has a button to start recording your voice and stop recording, once you finish recording, the app give you the possibility to playback your recording before save it to the local file\n\n- Contact feature : \n    - if permission to access your contact is granted, the app will display all your contacts information in a list: \n        - Key feature of this : \n            \n            * Displaying contact sorted from A to Z\n            * Search fonctionnality by name\n            * Add contact fonctionnality\n            * Delete contact \n- Location feature : \n    - if permission to access your location is grantend , the app shows you in the map your actual position with more precisions and it display also your longitude and latitude exactly\n\n- Connexion feature : \n    - the app show your actual connexion status and which connexion you use whether is cellular or wifi\n    - it show your public ip\n\n- Database with SQLite feature : \n    - Connected with the local SQLite database, the app display a great screen for doing crud operation with Facultie. but soon i'll add the ability for other stuff also\n\n\n### Technologies Used\n- Expo\n- React Native\n- Style with native css\n\n### Prerequisites\nBefore you begin, ensure you have the following installed:\n- Node.js (version 12 or higher)\n- npm or yarn\n- Expo CLI (`npm install -g expo-cli`)\n- Expo Go app on your mobile device (android or Ios)\n\n### Getting Started\n\n* Clone the repository\n\n```bash\ngit clone https://github.com/Likeur/first-expo-app.git\n```\n\n* navigate to the actual project directory\n\n```bash\ncd first-expo-app\n```\n\n* install dependencies\n\n```bash\nnpm install\n```\n\n\n* start the development server with\n\n```bash\nnpx expo start\n```\n\n\n\n\nimport React, { useState, useEffect } from 'react';\nimport {\n  View,\n  StyleSheet,\n  Text,\n  TouchableOpacity,\n  TextInput,\n  ScrollView,\n  StatusBar,\n  Platform,\n} from 'react-native';\nimport { MaterialIcons } from '@expo/vector-icons';\nimport { SQLiteProvider } from 'expo-sqlite';\nimport { migrateDbIfNeeded } from '@/components/migrations';\nimport {\n  addStudent,\n  getStudents,\n  getStudentById,\n  updateStudent,\n  deleteStudent,\n  getPromotions,\n} from '@/components/crud';\n\n\nimport React, { useState, useEffect } from 'react';\nimport {\n  View,\n  StyleSheet,\n  Text,\n  TouchableOpacity,\n  TextInput,\n  ScrollView,\n  StatusBar,\n  Platform,\n} from 'react-native';\nimport { MaterialIcons } from '@expo/vector-icons';\nimport { SQLiteProvider } from 'expo-sqlite';\nimport { migrateDbIfNeeded } from '@/components/migrations';\nimport {\n  addStudent,\n  getStudents,\n  getStudentById,\n  updateStudent,\n  deleteStudent,\n  getPromotions,\n} from '@/components/crud';\n\ninterface Student {\n  id?: number;\n  registrationNumber: string;\n  firstName: string;\n  lastName: string;\n  email: string;\n  phone: string;\n  promotionId: number;\n}\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flikeur%2Ffirst-expo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flikeur%2Ffirst-expo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flikeur%2Ffirst-expo-app/lists"}