Skip to content

Commit

Permalink
Update repo structure
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 21, 2024
1 parent 51c795b commit 7c23107
Show file tree
Hide file tree
Showing 2 changed files with 162 additions and 1 deletion.
161 changes: 161 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,167 @@ ShopSmart is a user-friendly shopping list app built with Kotlin and Jetpack Com
## Project Structure

<!-- START_STRUCTURE -->
```
├── Assets/
│ ├── Pasted image.png
│ ├── ScreenShot1.jpg
│ ├── ScreenShot2.jpg
│ ├── ScreenShot3.jpg
│ ├── ScreenShot4.jpg
│ ├── ShopSmartLogo.png
│ └── ShopSmartLogo2.png
├── CODE_OF_CONDUCT.md
├── DarkModeToggle
├── LICENSE
├── README.md
├── Screenshot 2024-10-03 202535.png
├── Screenshot 2024-10-03 202631.png
├── app/
│ ├── build.gradle.kts
│ ├── proguard-rules.pro
│ └── src/
│ ├── androidTest/
│ │ └── java/
│ │ └── com/
│ │ └── yuvrajsinghgmx/
│ │ └── shopsmart/
│ │ └── ExampleInstrumentedTest.kt
│ ├── main/
│ │ ├── AndroidManifest.xml
│ │ ├── java/
│ │ │ └── com/
│ │ │ └── yuvrajsinghgmx/
│ │ │ └── shopsmart/
│ │ │ ├── ApiData/
│ │ │ │ ├── Hit.kt
│ │ │ │ └── Pics.kt
│ │ │ ├── MainActivity.kt
│ │ │ ├── MyApp.kt
│ │ │ ├── Repository/
│ │ │ │ └── ImageRepo.kt
│ │ │ ├── api/
│ │ │ │ └── API.kt
│ │ │ ├── datastore/
│ │ │ │ ├── instance.kt
│ │ │ │ └── products.kt
│ │ │ ├── di/
│ │ │ │ └── NetworkModule.kt
│ │ │ ├── navbarpr.kt
│ │ │ ├── navigation/
│ │ │ │ └── Navigation.kt
│ │ │ ├── profilefeatures/
│ │ │ │ └── ImageComponents.kt
│ │ │ ├── screens/
│ │ │ │ ├── ContactUsScreen.kt
│ │ │ │ ├── EmailSignUpScreen.kt
│ │ │ │ ├── FAQScreen.kt
│ │ │ │ ├── HelpS.kt
│ │ │ │ ├── HomeScreen.kt
│ │ │ │ ├── ListScreen.kt
│ │ │ │ ├── MyOrders.kt
│ │ │ │ ├── Profile.kt
│ │ │ │ ├── ShopSmartNavBar.kt
│ │ │ │ ├── Signup.kt
│ │ │ │ ├── TermsCondition.kt
│ │ │ │ └── Upcoming.kt
│ │ │ ├── ui/
│ │ │ │ ├── Authpage.kt.txt
│ │ │ │ └── theme/
│ │ │ │ ├── Color.kt
│ │ │ │ ├── Theme.kt
│ │ │ │ └── Type.kt
│ │ │ ├── utils/
│ │ │ │ ├── ImageHelper.kt
│ │ │ │ └── SharedPrefsHelper.kt
│ │ │ └── viewmodel/
│ │ │ ├── HomeScreenViewModel.kt
│ │ │ └── ShoppingListViewModel.kt
│ │ └── res/
│ │ ├── drawable/
│ │ │ ├── addicon.png
│ │ │ ├── baseline_keyboard_voice_24.xml
│ │ │ ├── baseline_star_24.xml
│ │ │ ├── bell.png
│ │ │ ├── checkout.png
│ │ │ ├── customer_care.xml
│ │ │ ├── edit.png
│ │ │ ├── empty_dark.png
│ │ │ ├── empty_light.png
│ │ │ ├── fb.xml
│ │ │ ├── file__1_.png
│ │ │ ├── gmail.xml
│ │ │ ├── google.xml
│ │ │ ├── help.png
│ │ │ ├── ic_launcher_background.xml
│ │ │ ├── ic_launcher_foreground.xml
│ │ │ ├── instagram.xml
│ │ │ ├── linkedin.xml
│ │ │ ├── logo1.png
│ │ │ ├── logo2.png
│ │ │ ├── profile.png
│ │ │ ├── profilenewone.png
│ │ │ ├── setting.png
│ │ │ ├── shopinterior.jpeg
│ │ │ ├── shoppingbag.png
│ │ │ ├── shopsmart.png
│ │ │ └── whatsapp.xml
│ │ ├── font/
│ │ │ ├── abril_fatface_regular.ttf
│ │ │ ├── lexend_black.ttf
│ │ │ ├── lexend_bold.ttf
│ │ │ ├── lexend_extrabold.ttf
│ │ │ ├── lexend_light.ttf
│ │ │ ├── lexend_medium.ttf
│ │ │ ├── lexend_regular.ttf
│ │ │ ├── lexend_semibold.ttf
│ │ │ ├── lexend_thin.ttf
│ │ │ ├── montserrat_bold.ttf
│ │ │ └── montserrat_regular.ttf
│ │ ├── mipmap-anydpi/
│ │ │ ├── ic_launcher.xml
│ │ │ └── ic_launcher_round.xml
│ │ ├── mipmap-hdpi/
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ ├── mipmap-mdpi/
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xhdpi/
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xxhdpi/
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ ├── mipmap-xxxhdpi/
│ │ │ ├── ic_launcher.webp
│ │ │ └── ic_launcher_round.webp
│ │ ├── values/
│ │ │ ├── colors.xml
│ │ │ ├── strings.xml
│ │ │ └── themes.xml
│ │ └── xml/
│ │ ├── backup_rules.xml
│ │ ├── data_extraction_rules.xml
│ │ └── file_paths.xml
│ └── test/
│ └── java/
│ └── com/
│ └── yuvrajsinghgmx/
│ └── shopsmart/
│ └── ExampleUnitTest.kt
├── build.gradle.kts
├── contributors.md
├── gradle/
│ ├── libs.versions.toml
│ └── wrapper/
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradle.properties
├── gradlew
├── gradlew.bat
├── repo_structure.txt
└── settings.gradle.kts
```
<!-- END_STRUCTURE -->

## **🔗 Table of Contents**
Expand Down
2 changes: 1 addition & 1 deletion repo_structure.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
├── CODE_OF_CONDUCT.md
├── DarkModeToggle
├── LICENSE
├── Readme.md
├── README.md
├── Screenshot 2024-10-03 202535.png
├── Screenshot 2024-10-03 202631.png
├── app/
Expand Down

0 comments on commit 7c23107

Please sign in to comment.