forked from yuvrajsinghgmx/ShopSmart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
repo_structure.txt
159 lines (159 loc) · 7.52 KB
/
repo_structure.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
├── 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