├── .watchmanconfig ├── .node-version ├── my-app.d.ts ├── fastlane └── metadata │ ├── android │ └── en-US │ │ ├── title.txt │ │ ├── short_description.txt │ │ ├── images │ │ ├── icon.png │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ └── 8.png │ │ └── full_description.txt │ └── Fastfile ├── declaration.d.ts ├── .bundle └── config ├── app.json ├── .vscode └── settings.json ├── assets ├── images │ ├── add.png │ ├── bulk.png │ ├── closet.png │ ├── empty.png │ ├── hanger.png │ ├── icon1.png │ ├── icon10.png │ ├── icon11.png │ ├── icon12.png │ ├── icon13.png │ ├── icon14.png │ ├── icon15.png │ ├── icon2.png │ ├── icon3.png │ ├── icon4.png │ ├── icon5.png │ ├── icon6.png │ ├── icon7.png │ ├── icon8.png │ ├── icon9.png │ ├── record.png │ ├── single.png │ ├── addImage.png │ ├── layout1.png │ ├── settings.png │ ├── layoutHigh.png │ ├── layoutShort.png │ ├── layoutSkirt.png │ ├── layoutStar.png │ ├── layoutTie.png │ ├── layoutshoes.png │ ├── outfitLog.png │ ├── layoutCircle.png │ ├── layoutHoodie.png │ ├── layoutJacket.png │ ├── layoutPeplum.png │ ├── layoutSweater.png │ ├── layoutTshirt.png │ ├── LaundryOptions2.png │ ├── closetUnselected.png │ ├── laundryOptions.png │ ├── layoutSelection.png │ ├── layoutTriangle.png │ ├── layoutTrousers.png │ ├── outfitUnselected.png │ ├── layoutAccessories.png │ ├── settingsUnselected.png │ └── sprites │ │ ├── shoes │ │ ├── shoes0000.png │ │ ├── shoes0001.png │ │ ├── shoes0002.png │ │ ├── shoes0003.png │ │ ├── shoes0004.png │ │ ├── shoes0005.png │ │ ├── shoes0006.png │ │ ├── shoes0007.png │ │ ├── shoes0008.png │ │ ├── shoes0009.png │ │ ├── shoes0010.png │ │ ├── shoes0011.png │ │ ├── shoes0012.png │ │ ├── shoes0013.png │ │ ├── shoes0014.png │ │ ├── shoes0015.png │ │ ├── shoes0016.png │ │ ├── shoes0017.png │ │ ├── shoes0018.png │ │ ├── shoes0019.png │ │ ├── shoes0020.png │ │ ├── shoes0021.png │ │ ├── shoes0022.png │ │ ├── shoes0023.png │ │ ├── shoes0024.png │ │ ├── shoes0025.png │ │ ├── shoes0026.png │ │ ├── shoes0027.png │ │ ├── shoes0028.png │ │ ├── shoes0029.png │ │ ├── shoes0030.png │ │ ├── shoes0031.png │ │ ├── shoes0032.png │ │ ├── shoes0033.png │ │ ├── shoes0034.png │ │ ├── shoes0035.png │ │ ├── shoes0036.png │ │ ├── shoes0037.png │ │ ├── shoes0038.png │ │ ├── shoes0039.png │ │ ├── shoes0040.png │ │ ├── shoes0041.png │ │ ├── shoes0042.png │ │ ├── shoes0043.png │ │ ├── shoes0044.png │ │ ├── shoes0045.png │ │ ├── shoes0046.png │ │ ├── shoes0047.png │ │ ├── shoes0048.png │ │ ├── shoes0049.png │ │ ├── shoes0050.png │ │ ├── shoes0051.png │ │ ├── shoes0052.png │ │ ├── shoes0053.png │ │ ├── shoes0054.png │ │ ├── shoes0055.png │ │ ├── shoes0056.png │ │ ├── shoes0057.png │ │ ├── shoes0058.png │ │ ├── shoes0059.png │ │ ├── shoes0060.png │ │ ├── shoes0061.png │ │ ├── shoes0062.png │ │ ├── shoes0063.png │ │ ├── shoes0064.png │ │ ├── shoes0065.png │ │ ├── shoes0066.png │ │ ├── shoes0067.png │ │ ├── shoes0068.png │ │ ├── shoes0069.png │ │ ├── shoes0070.png │ │ ├── shoes0071.png │ │ └── shoes0072.png │ │ ├── jacket │ │ ├── jacket0000.png │ │ ├── jacket0001.png │ │ ├── jacket0002.png │ │ ├── jacket0003.png │ │ ├── jacket0004.png │ │ ├── jacket0005.png │ │ ├── jacket0006.png │ │ ├── jacket0007.png │ │ ├── jacket0008.png │ │ ├── jacket0009.png │ │ ├── jacket0010.png │ │ ├── jacket0011.png │ │ ├── jacket0012.png │ │ ├── jacket0013.png │ │ ├── jacket0014.png │ │ ├── jacket0015.png │ │ ├── jacket0016.png │ │ ├── jacket0017.png │ │ ├── jacket0018.png │ │ ├── jacket0019.png │ │ ├── jacket0020.png │ │ ├── jacket0021.png │ │ ├── jacket0022.png │ │ ├── jacket0023.png │ │ ├── jacket0024.png │ │ ├── jacket0025.png │ │ ├── jacket0026.png │ │ ├── jacket0027.png │ │ ├── jacket0028.png │ │ ├── jacket0029.png │ │ ├── jacket0030.png │ │ ├── jacket0031.png │ │ ├── jacket0032.png │ │ ├── jacket0033.png │ │ ├── jacket0034.png │ │ ├── jacket0035.png │ │ ├── jacket0036.png │ │ ├── jacket0037.png │ │ ├── jacket0038.png │ │ ├── jacket0039.png │ │ ├── jacket0040.png │ │ ├── jacket0041.png │ │ ├── jacket0042.png │ │ ├── jacket0043.png │ │ ├── jacket0044.png │ │ ├── jacket0045.png │ │ ├── jacket0046.png │ │ ├── jacket0047.png │ │ ├── jacket0048.png │ │ ├── jacket0049.png │ │ ├── jacket0050.png │ │ ├── jacket0051.png │ │ ├── jacket0052.png │ │ ├── jacket0053.png │ │ ├── jacket0054.png │ │ ├── jacket0055.png │ │ ├── jacket0056.png │ │ ├── jacket0057.png │ │ ├── jacket0058.png │ │ ├── jacket0059.png │ │ ├── jacket0060.png │ │ ├── jacket0061.png │ │ ├── jacket0062.png │ │ ├── jacket0063.png │ │ ├── jacket0064.png │ │ ├── jacket0065.png │ │ ├── jacket0066.png │ │ ├── jacket0067.png │ │ ├── jacket0068.png │ │ ├── jacket0069.png │ │ ├── jacket0070.png │ │ ├── jacket0071.png │ │ └── jacket0072.png │ │ ├── tshirt │ │ ├── tShirt0000.png │ │ ├── tShirt0001.png │ │ ├── tShirt0002.png │ │ ├── tShirt0003.png │ │ ├── tShirt0004.png │ │ ├── tShirt0005.png │ │ ├── tShirt0006.png │ │ ├── tShirt0007.png │ │ ├── tShirt0008.png │ │ ├── tShirt0009.png │ │ ├── tShirt0010.png │ │ ├── tShirt0011.png │ │ ├── tShirt0012.png │ │ ├── tShirt0013.png │ │ ├── tShirt0014.png │ │ ├── tShirt0015.png │ │ ├── tShirt0016.png │ │ ├── tShirt0017.png │ │ ├── tShirt0018.png │ │ ├── tShirt0019.png │ │ ├── tShirt0020.png │ │ ├── tShirt0021.png │ │ ├── tShirt0022.png │ │ ├── tShirt0023.png │ │ ├── tShirt0024.png │ │ ├── tShirt0025.png │ │ ├── tShirt0026.png │ │ ├── tShirt0027.png │ │ ├── tShirt0028.png │ │ ├── tShirt0029.png │ │ ├── tShirt0030.png │ │ ├── tShirt0031.png │ │ ├── tShirt0032.png │ │ ├── tShirt0033.png │ │ ├── tShirt0034.png │ │ ├── tShirt0035.png │ │ ├── tShirt0036.png │ │ ├── tShirt0037.png │ │ ├── tShirt0038.png │ │ ├── tShirt0039.png │ │ ├── tShirt0040.png │ │ ├── tShirt0041.png │ │ ├── tShirt0042.png │ │ ├── tShirt0043.png │ │ ├── tShirt0044.png │ │ ├── tShirt0045.png │ │ ├── tShirt0046.png │ │ ├── tShirt0047.png │ │ ├── tShirt0048.png │ │ ├── tShirt0049.png │ │ ├── tShirt0050.png │ │ ├── tShirt0051.png │ │ ├── tShirt0052.png │ │ ├── tShirt0053.png │ │ ├── tShirt0054.png │ │ ├── tShirt0055.png │ │ ├── tShirt0056.png │ │ ├── tShirt0057.png │ │ ├── tShirt0058.png │ │ ├── tShirt0059.png │ │ ├── tShirt0060.png │ │ ├── tShirt0061.png │ │ ├── tShirt0062.png │ │ ├── tShirt0063.png │ │ ├── tShirt0064.png │ │ ├── tShirt0065.png │ │ ├── tShirt0066.png │ │ ├── tShirt0067.png │ │ ├── tShirt0068.png │ │ ├── tShirt0069.png │ │ ├── tShirt0070.png │ │ ├── tShirt0071.png │ │ └── tShirt0072.png │ │ ├── trousers │ │ ├── trousers0000.png │ │ ├── trousers0001.png │ │ ├── trousers0002.png │ │ ├── trousers0003.png │ │ ├── trousers0004.png │ │ ├── trousers0005.png │ │ ├── trousers0006.png │ │ ├── trousers0007.png │ │ ├── trousers0008.png │ │ ├── trousers0009.png │ │ ├── trousers0010.png │ │ ├── trousers0011.png │ │ ├── trousers0012.png │ │ ├── trousers0013.png │ │ ├── trousers0014.png │ │ ├── trousers0015.png │ │ ├── trousers0016.png │ │ ├── trousers0017.png │ │ ├── trousers0018.png │ │ ├── trousers0019.png │ │ ├── trousers0020.png │ │ ├── trousers0021.png │ │ ├── trousers0022.png │ │ ├── trousers0023.png │ │ ├── trousers0024.png │ │ ├── trousers0025.png │ │ ├── trousers0026.png │ │ ├── trousers0027.png │ │ ├── trousers0028.png │ │ ├── trousers0029.png │ │ ├── trousers0030.png │ │ ├── trousers0031.png │ │ ├── trousers0032.png │ │ ├── trousers0033.png │ │ ├── trousers0034.png │ │ ├── trousers0035.png │ │ ├── trousers0036.png │ │ ├── trousers0037.png │ │ ├── trousers0038.png │ │ ├── trousers0039.png │ │ ├── trousers0040.png │ │ ├── trousers0041.png │ │ ├── trousers0042.png │ │ ├── trousers0043.png │ │ ├── trousers0044.png │ │ ├── trousers0045.png │ │ ├── trousers0046.png │ │ ├── trousers0047.png │ │ ├── trousers0048.png │ │ ├── trousers0049.png │ │ ├── trousers0050.png │ │ ├── trousers0051.png │ │ ├── trousers0052.png │ │ ├── trousers0053.png │ │ ├── trousers0054.png │ │ ├── trousers0055.png │ │ ├── trousers0056.png │ │ ├── trousers0057.png │ │ ├── trousers0058.png │ │ ├── trousers0059.png │ │ ├── trousers0060.png │ │ ├── trousers0061.png │ │ ├── trousers0062.png │ │ ├── trousers0063.png │ │ ├── trousers0064.png │ │ ├── trousers0065.png │ │ ├── trousers0066.png │ │ ├── trousers0067.png │ │ ├── trousers0068.png │ │ ├── trousers0069.png │ │ ├── trousers0070.png │ │ ├── trousers0071.png │ │ └── trousers0072.png │ │ ├── customCategory │ │ ├── custom0000.png │ │ ├── custom0001.png │ │ ├── custom0002.png │ │ ├── custom0003.png │ │ ├── custom0004.png │ │ ├── custom0005.png │ │ ├── custom0006.png │ │ ├── custom0007.png │ │ ├── custom0008.png │ │ ├── custom0009.png │ │ ├── custom0010.png │ │ ├── custom0011.png │ │ ├── custom0012.png │ │ ├── custom0013.png │ │ ├── custom0014.png │ │ ├── custom0015.png │ │ ├── custom0016.png │ │ ├── custom0017.png │ │ ├── custom0018.png │ │ ├── custom0019.png │ │ ├── custom0020.png │ │ ├── custom0021.png │ │ ├── custom0022.png │ │ ├── custom0023.png │ │ ├── custom0024.png │ │ ├── custom0025.png │ │ ├── custom0026.png │ │ ├── custom0027.png │ │ ├── custom0028.png │ │ ├── custom0029.png │ │ ├── custom0030.png │ │ ├── custom0031.png │ │ ├── custom0032.png │ │ ├── custom0033.png │ │ ├── custom0034.png │ │ ├── custom0035.png │ │ ├── custom0036.png │ │ ├── custom0037.png │ │ ├── custom0038.png │ │ ├── custom0039.png │ │ ├── custom0040.png │ │ ├── custom0041.png │ │ ├── custom0042.png │ │ ├── custom0043.png │ │ ├── custom0044.png │ │ ├── custom0045.png │ │ ├── custom0046.png │ │ ├── custom0047.png │ │ ├── custom0048.png │ │ ├── custom0049.png │ │ ├── custom0050.png │ │ ├── custom0051.png │ │ ├── custom0052.png │ │ ├── custom0053.png │ │ ├── custom0054.png │ │ ├── custom0055.png │ │ ├── custom0056.png │ │ ├── custom0057.png │ │ ├── custom0058.png │ │ ├── custom0059.png │ │ ├── custom0060.png │ │ ├── custom0061.png │ │ ├── custom0062.png │ │ ├── custom0063.png │ │ ├── custom0064.png │ │ ├── custom0065.png │ │ ├── custom0066.png │ │ ├── custom0067.png │ │ ├── custom0068.png │ │ ├── custom0069.png │ │ ├── custom0070.png │ │ ├── custom0071.png │ │ └── custom0072.png │ │ ├── accessories │ │ ├── accessories0000.png │ │ ├── accessories0001.png │ │ ├── accessories0002.png │ │ ├── accessories0003.png │ │ ├── accessories0004.png │ │ ├── accessories0005.png │ │ ├── accessories0006.png │ │ ├── accessories0007.png │ │ ├── accessories0008.png │ │ ├── accessories0009.png │ │ ├── accessories0010.png │ │ ├── accessories0011.png │ │ ├── accessories0012.png │ │ ├── accessories0013.png │ │ ├── accessories0014.png │ │ ├── accessories0015.png │ │ ├── accessories0016.png │ │ ├── accessories0017.png │ │ ├── accessories0018.png │ │ ├── accessories0019.png │ │ ├── accessories0020.png │ │ ├── accessories0021.png │ │ ├── accessories0022.png │ │ ├── accessories0023.png │ │ ├── accessories0024.png │ │ ├── accessories0025.png │ │ ├── accessories0026.png │ │ ├── accessories0027.png │ │ ├── accessories0028.png │ │ ├── accessories0029.png │ │ ├── accessories0030.png │ │ ├── accessories0031.png │ │ ├── accessories0032.png │ │ ├── accessories0033.png │ │ ├── accessories0034.png │ │ ├── accessories0035.png │ │ ├── accessories0036.png │ │ ├── accessories0037.png │ │ ├── accessories0038.png │ │ ├── accessories0039.png │ │ ├── accessories0040.png │ │ ├── accessories0041.png │ │ ├── accessories0042.png │ │ ├── accessories0043.png │ │ ├── accessories0044.png │ │ ├── accessories0045.png │ │ ├── accessories0046.png │ │ ├── accessories0047.png │ │ ├── accessories0048.png │ │ ├── accessories0049.png │ │ ├── accessories0050.png │ │ ├── accessories0051.png │ │ ├── accessories0052.png │ │ ├── accessories0053.png │ │ ├── accessories0054.png │ │ ├── accessories0055.png │ │ ├── accessories0056.png │ │ ├── accessories0057.png │ │ ├── accessories0058.png │ │ ├── accessories0059.png │ │ ├── accessories0060.png │ │ ├── accessories0061.png │ │ ├── accessories0062.png │ │ ├── accessories0063.png │ │ ├── accessories0064.png │ │ ├── accessories0065.png │ │ ├── accessories0066.png │ │ ├── accessories0067.png │ │ ├── accessories0068.png │ │ ├── accessories0069.png │ │ ├── accessories0070.png │ │ ├── accessories0071.png │ │ └── accessories0072.png │ │ └── newCategory │ │ ├── NewCategory0000.png │ │ ├── NewCategory0001.png │ │ ├── NewCategory0002.png │ │ ├── NewCategory0003.png │ │ ├── NewCategory0004.png │ │ ├── NewCategory0005.png │ │ ├── NewCategory0006.png │ │ ├── NewCategory0007.png │ │ ├── NewCategory0008.png │ │ ├── NewCategory0009.png │ │ ├── NewCategory0010.png │ │ ├── NewCategory0011.png │ │ ├── NewCategory0012.png │ │ ├── NewCategory0013.png │ │ ├── NewCategory0014.png │ │ ├── NewCategory0015.png │ │ ├── NewCategory0016.png │ │ ├── NewCategory0017.png │ │ ├── NewCategory0018.png │ │ ├── NewCategory0019.png │ │ ├── NewCategory0020.png │ │ ├── NewCategory0021.png │ │ ├── NewCategory0022.png │ │ ├── NewCategory0023.png │ │ ├── NewCategory0024.png │ │ ├── NewCategory0025.png │ │ ├── NewCategory0026.png │ │ ├── NewCategory0027.png │ │ ├── NewCategory0028.png │ │ ├── NewCategory0029.png │ │ ├── NewCategory0030.png │ │ ├── NewCategory0031.png │ │ ├── NewCategory0032.png │ │ ├── NewCategory0033.png │ │ ├── NewCategory0034.png │ │ ├── NewCategory0035.png │ │ ├── NewCategory0036.png │ │ ├── NewCategory0037.png │ │ ├── NewCategory0038.png │ │ ├── NewCategory0039.png │ │ ├── NewCategory0040.png │ │ ├── NewCategory0041.png │ │ ├── NewCategory0042.png │ │ ├── NewCategory0043.png │ │ ├── NewCategory0044.png │ │ ├── NewCategory0045.png │ │ ├── NewCategory0046.png │ │ ├── NewCategory0047.png │ │ ├── NewCategory0048.png │ │ ├── NewCategory0049.png │ │ ├── NewCategory0050.png │ │ ├── NewCategory0051.png │ │ ├── NewCategory0052.png │ │ ├── NewCategory0053.png │ │ ├── NewCategory0054.png │ │ ├── NewCategory0055.png │ │ ├── NewCategory0056.png │ │ ├── NewCategory0057.png │ │ ├── NewCategory0058.png │ │ ├── NewCategory0059.png │ │ ├── NewCategory0060.png │ │ ├── NewCategory0061.png │ │ ├── NewCategory0062.png │ │ ├── NewCategory0063.png │ │ ├── NewCategory0064.png │ │ ├── NewCategory0065.png │ │ ├── NewCategory0066.png │ │ ├── NewCategory0067.png │ │ ├── NewCategory0068.png │ │ ├── NewCategory0069.png │ │ ├── NewCategory0070.png │ │ ├── NewCategory0071.png │ │ └── NewCategory0072.png └── fonts │ ├── Montserrat-Bold.otf │ ├── Montserrat-Regular.otf │ └── TSMorabaat-Regular.otf ├── Readme_images ├── img1.png ├── img2.png └── img3.png ├── android ├── app │ ├── debug.keystore │ ├── src │ │ ├── main │ │ │ ├── res │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ ├── colors.xml │ │ │ │ │ └── styles.xml │ │ │ │ ├── drawable │ │ │ │ │ └── launch_screen.jpg │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── layout │ │ │ │ │ └── launch_screen.xml │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── Montserrat-Bold.otf │ │ │ │ │ ├── Montserrat-Regular.otf │ │ │ │ │ └── TSMorabaat-Regular.otf │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── myclosetx │ │ │ │ └── MainActivity.java │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ └── release │ │ │ └── java │ │ │ └── com │ │ │ └── myclosetx │ │ │ └── ReactNativeFlipper.java │ └── proguard-rules.pro ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── link-assets-manifest.json ├── settings.gradle ├── build.gradle └── gradle.properties ├── ios ├── closetArchive │ ├── Images.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── AppDelegate.h │ ├── main.m │ ├── AppDelegate.mm │ └── Info.plist ├── link-assets-manifest.json ├── .xcode.env └── closetArchiveTests │ └── Info.plist ├── .eslintrc.js ├── .prettierrc.js ├── react-native.config.js ├── Gemfile ├── babel.config.js ├── metro.config.js ├── utils ├── validators.ts └── exportStoreToJson.ts ├── tailwind.config.js ├── hooks ├── useWidthScreen.ts └── useHeatmap.ts ├── index.js ├── components ├── ThemeView.tsx ├── ThemeText.tsx ├── BackButton.tsx ├── SpriteAnimator.tsx ├── CustomInput.tsx ├── ImageViewer.tsx └── CustomModal.tsx ├── License ├── redux └── store.ts ├── .gitignore ├── App.tsx └── tsconfig.json /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /my-app.d.ts: -------------------------------------------------------------------------------- 1 | /// -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Closet-Archive -------------------------------------------------------------------------------- /declaration.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.jpg" 2 | declare module "*.png" -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | BUNDLE_PATH: "vendor/bundle" 2 | BUNDLE_FORCE_RUBY_PLATFORM: 1 3 | -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Closet-Archive", 3 | "displayName": "Closet-Archive" 4 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": [ 3 | "usefocuseffect" 4 | ] 5 | } -------------------------------------------------------------------------------- /assets/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/add.png -------------------------------------------------------------------------------- /Readme_images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/Readme_images/img1.png -------------------------------------------------------------------------------- /Readme_images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/Readme_images/img2.png -------------------------------------------------------------------------------- /Readme_images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/Readme_images/img3.png -------------------------------------------------------------------------------- /assets/images/bulk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/bulk.png -------------------------------------------------------------------------------- /assets/images/closet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/closet.png -------------------------------------------------------------------------------- /assets/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/empty.png -------------------------------------------------------------------------------- /assets/images/hanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/hanger.png -------------------------------------------------------------------------------- /assets/images/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon1.png -------------------------------------------------------------------------------- /assets/images/icon10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon10.png -------------------------------------------------------------------------------- /assets/images/icon11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon11.png -------------------------------------------------------------------------------- /assets/images/icon12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon12.png -------------------------------------------------------------------------------- /assets/images/icon13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon13.png -------------------------------------------------------------------------------- /assets/images/icon14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon14.png -------------------------------------------------------------------------------- /assets/images/icon15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon15.png -------------------------------------------------------------------------------- /assets/images/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon2.png -------------------------------------------------------------------------------- /assets/images/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon3.png -------------------------------------------------------------------------------- /assets/images/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon4.png -------------------------------------------------------------------------------- /assets/images/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon5.png -------------------------------------------------------------------------------- /assets/images/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon6.png -------------------------------------------------------------------------------- /assets/images/icon7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon7.png -------------------------------------------------------------------------------- /assets/images/icon8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon8.png -------------------------------------------------------------------------------- /assets/images/icon9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/icon9.png -------------------------------------------------------------------------------- /assets/images/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/record.png -------------------------------------------------------------------------------- /assets/images/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/single.png -------------------------------------------------------------------------------- /android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/debug.keystore -------------------------------------------------------------------------------- /assets/images/addImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/addImage.png -------------------------------------------------------------------------------- /assets/images/layout1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layout1.png -------------------------------------------------------------------------------- /assets/images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/settings.png -------------------------------------------------------------------------------- /assets/images/layoutHigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutHigh.png -------------------------------------------------------------------------------- /assets/images/layoutShort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutShort.png -------------------------------------------------------------------------------- /assets/images/layoutSkirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutSkirt.png -------------------------------------------------------------------------------- /assets/images/layoutStar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutStar.png -------------------------------------------------------------------------------- /assets/images/layoutTie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutTie.png -------------------------------------------------------------------------------- /assets/images/layoutshoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutshoes.png -------------------------------------------------------------------------------- /assets/images/outfitLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/outfitLog.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Organize clothes, log events, track laundry, and recall last week's outfit. -------------------------------------------------------------------------------- /android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Closet-Archive 3 | 4 | -------------------------------------------------------------------------------- /assets/images/layoutCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutCircle.png -------------------------------------------------------------------------------- /assets/images/layoutHoodie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutHoodie.png -------------------------------------------------------------------------------- /assets/images/layoutJacket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutJacket.png -------------------------------------------------------------------------------- /assets/images/layoutPeplum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutPeplum.png -------------------------------------------------------------------------------- /assets/images/layoutSweater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutSweater.png -------------------------------------------------------------------------------- /assets/images/layoutTshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutTshirt.png -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/fonts/Montserrat-Bold.otf -------------------------------------------------------------------------------- /assets/images/LaundryOptions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/LaundryOptions2.png -------------------------------------------------------------------------------- /assets/images/closetUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/closetUnselected.png -------------------------------------------------------------------------------- /assets/images/laundryOptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/laundryOptions.png -------------------------------------------------------------------------------- /assets/images/layoutSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutSelection.png -------------------------------------------------------------------------------- /assets/images/layoutTriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutTriangle.png -------------------------------------------------------------------------------- /assets/images/layoutTrousers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutTrousers.png -------------------------------------------------------------------------------- /assets/images/outfitUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/outfitUnselected.png -------------------------------------------------------------------------------- /ios/closetArchive/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /assets/fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/TSMorabaat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/fonts/TSMorabaat-Regular.otf -------------------------------------------------------------------------------- /assets/images/layoutAccessories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/layoutAccessories.png -------------------------------------------------------------------------------- /assets/images/settingsUnselected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/settingsUnselected.png -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | rules: { 5 | 'prettier/prettier': 0, 6 | }, 7 | }; -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0000.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0001.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0002.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0003.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0004.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0005.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0006.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0007.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0008.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0009.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0010.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0011.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0012.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0013.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0014.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0015.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0016.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0017.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0018.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0019.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0020.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0021.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0022.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0023.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0024.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0025.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0026.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0027.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0028.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0029.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0030.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0031.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0032.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0033.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0034.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0035.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0036.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0037.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0038.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0039.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0040.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0041.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0042.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0043.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0044.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0045.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0046.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0047.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0048.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0049.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0050.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0051.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0052.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0053.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0054.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0055.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0056.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0057.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0058.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0059.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0060.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0061.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0062.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0063.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0064.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0065.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0066.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0067.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0068.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0069.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0070.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0071.png -------------------------------------------------------------------------------- /assets/images/sprites/shoes/shoes0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/shoes/shoes0072.png -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSameLine: false, 3 | bracketSpacing: true, 4 | singleQuote: false, 5 | trailingComma: 'all', 6 | }; 7 | -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0000.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0001.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0002.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0003.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0004.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0005.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0006.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0007.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0008.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0009.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0010.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0011.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0012.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0013.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0014.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0015.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0016.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0017.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0018.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0019.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0020.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0021.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0022.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0023.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0024.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0025.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0026.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0027.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0028.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0029.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0030.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0031.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0032.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0033.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0034.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0035.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0036.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0037.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0038.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0039.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0040.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0041.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0042.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0043.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0044.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0045.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0046.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0047.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0048.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0049.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0050.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0051.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0052.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0053.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0054.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0055.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0056.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0057.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0058.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0059.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0060.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0061.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0062.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0063.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0064.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0065.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0066.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0067.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0068.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0069.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0070.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0071.png -------------------------------------------------------------------------------- /assets/images/sprites/jacket/jacket0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/jacket/jacket0072.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0000.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0001.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0002.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0003.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0004.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0005.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0006.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0007.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0008.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0009.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0010.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0011.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0012.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0013.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0014.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0015.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0016.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0017.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0018.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0019.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0020.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0021.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0022.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0023.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0024.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0025.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0026.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0027.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0028.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0029.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0030.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0031.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0032.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0033.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0034.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0035.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0036.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0037.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0038.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0039.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0040.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0041.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0042.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0043.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0044.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0045.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0046.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0047.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0048.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0049.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0050.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0051.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0052.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0053.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0054.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0055.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0056.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0057.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0058.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0059.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0060.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0061.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0062.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0063.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0064.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0065.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0066.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0067.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0068.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0069.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0070.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0071.png -------------------------------------------------------------------------------- /assets/images/sprites/tshirt/tShirt0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/tshirt/tShirt0072.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0000.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0001.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0002.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0003.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0004.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0005.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0006.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0007.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0008.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0009.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0010.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0011.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0012.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0013.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0014.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0015.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0016.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0017.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0018.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0019.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0020.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0021.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0022.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0023.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0024.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0025.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0026.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0027.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0028.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0029.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0030.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0031.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0032.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0033.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0034.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0035.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0036.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0037.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0038.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0039.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0040.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0041.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0042.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0043.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0044.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0045.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0046.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0047.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0048.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0049.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0050.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0051.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0052.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0053.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0054.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0055.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0056.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0057.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0058.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0059.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0060.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0061.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0062.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0063.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0064.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0065.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0066.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0067.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0068.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0069.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0070.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0071.png -------------------------------------------------------------------------------- /assets/images/sprites/trousers/trousers0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/trousers/trousers0072.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | project: { 3 | ios: {}, 4 | android: {} 5 | }, 6 | assets: [ './assets/fonts/' ], 7 | } -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/drawable/launch_screen.jpg -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0000.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0001.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0002.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0003.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0004.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0005.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0006.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0007.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0008.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0009.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0010.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0011.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0012.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0013.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0014.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0015.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0016.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0017.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0018.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0019.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0020.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0021.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0022.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0023.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0024.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0025.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0026.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0027.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0028.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0029.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0030.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0031.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0032.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0033.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0034.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0035.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0036.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0037.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0038.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0039.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0040.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0041.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0042.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0043.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0044.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0045.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0046.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0047.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0048.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0049.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0050.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0051.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0052.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0053.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0054.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0055.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0056.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0057.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0058.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0059.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0060.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0061.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0062.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0063.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0064.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0065.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0066.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0067.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0068.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0069.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0070.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0071.png -------------------------------------------------------------------------------- /assets/images/sprites/customCategory/custom0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/customCategory/custom0072.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/assets/fonts/Montserrat-Bold.otf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0000.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0001.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0002.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0003.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0004.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0005.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0006.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0007.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0008.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0009.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0010.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0011.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0012.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0013.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0014.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0015.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0016.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0017.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0018.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0019.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0020.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0021.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0022.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0023.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0024.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0025.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0026.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0027.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0028.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0029.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0030.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0031.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0032.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0033.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0034.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0035.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0036.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0037.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0038.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0039.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0040.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0041.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0042.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0043.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0044.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0045.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0046.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0047.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0048.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0049.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0050.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0051.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0052.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0053.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0054.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0055.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0056.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0057.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0058.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0059.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0060.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0061.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0062.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0063.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0064.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0065.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0066.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0067.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0068.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0069.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0070.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0071.png -------------------------------------------------------------------------------- /assets/images/sprites/accessories/accessories0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/accessories/accessories0072.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0000.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0001.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0002.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0003.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0004.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0005.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0006.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0007.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0008.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0009.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0010.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0011.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0012.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0013.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0014.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0015.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0016.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0017.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0018.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0019.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0020.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0021.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0022.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0023.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0024.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0025.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0026.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0027.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0028.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0029.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0030.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0031.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0032.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0033.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0034.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0035.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0036.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0037.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0038.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0039.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0040.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0041.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0042.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0043.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0044.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0045.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0046.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0047.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0048.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0049.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0050.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0051.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0052.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0052.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0053.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0054.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0054.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0055.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0056.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0057.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0058.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0059.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0060.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0061.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0062.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0063.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0064.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0065.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0066.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0067.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0068.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0069.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0070.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0071.png -------------------------------------------------------------------------------- /assets/images/sprites/newCategory/NewCategory0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/assets/images/sprites/newCategory/NewCategory0072.png -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/Montserrat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/assets/fonts/Montserrat-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/assets/fonts/TSMorabaat-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/assets/fonts/TSMorabaat-Regular.otf -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /ios/closetArchive/AppDelegate.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface AppDelegate : EXAppDelegateWrapper 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | # You may use http://rbenv.org/ or https://rvm.io/ to install and use this version 4 | ruby '>= 2.6.10' 5 | 6 | gem 'cocoapods', '>= 1.11.3' 7 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/7.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahaaTuffaha/Project-ClosetArchive/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/8.png -------------------------------------------------------------------------------- /android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ffffff 4 | #FFF 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | Features 2 | 3 | - Adding a Clothing Item. 4 | - Filtring clothes. 5 | - Logging an Event. 6 | - Managing Collections. 7 | - Laundry alert/notification. 8 | - "Import" and "Export" your data localy. -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /ios/closetArchive/main.m: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "AppDelegate.h" 4 | 5 | int main(int argc, char *argv[]) 6 | { 7 | @autoreleasepool { 8 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /fastlane/metadata/Fastfile: -------------------------------------------------------------------------------- 1 | desc "Submit a new Beta Build to fdroid" 2 | lane :beta do 3 | 4 | # tests must pass 5 | sh "npm test" 6 | 7 | gradle(task: "assembleRelease") 8 | 9 | # Upload to beta 10 | supply(track: 'beta') 11 | 12 | end -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | //Reanimated plugin has to be listed last. 2 | module.exports = { 3 | presets: ['module:metro-react-native-babel-preset'], 4 | plugins: ["nativewind/babel",'react-native-reanimated/plugin'], 5 | env: { 6 | production: { 7 | plugins: ['react-native-paper/babel'], 8 | }, 9 | }, 10 | }; 11 | -------------------------------------------------------------------------------- /metro.config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Metro configuration for React Native 3 | * https://github.com/facebook/react-native 4 | * 5 | * @format 6 | */ 7 | 8 | module.exports = { 9 | transformer: { 10 | getTransformOptions: async () => ({ 11 | transform: { 12 | experimentalImportSupport: false, 13 | inlineRequires: true, 14 | }, 15 | }), 16 | }, 17 | }; 18 | -------------------------------------------------------------------------------- /utils/validators.ts: -------------------------------------------------------------------------------- 1 | export const handleNumberChange = ( 2 | func: any, 3 | text: string, 4 | min: number, 5 | max: number, 6 | ) => { 7 | // Use regular expressions to allow only numbers and optionally a single decimal point 8 | const regex = /^[0-9]*\.?[0-9]*$/; 9 | if (regex.test(text) && Number(text) >= min && Number(text) <= max) { 10 | func(); 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/layout/launch_screen.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | -------------------------------------------------------------------------------- /ios/link-assets-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "migIndex": 1, 3 | "data": [ 4 | { 5 | "path": "assets/fonts/Montserrat-Bold.otf", 6 | "sha1": "a88aa713b7cdada0016869ed3548aa9c4e4f18b5" 7 | }, 8 | { 9 | "path": "assets/fonts/Montserrat-Regular.otf", 10 | "sha1": "a3f5403e26df9e0dfcabd5c17bdf29662fbe96c2" 11 | }, 12 | { 13 | "path": "assets/fonts/TSMorabaat-Regular.otf", 14 | "sha1": "ec4a2fa82e0b19b9409cb67737c9b9f99d0be754" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /android/link-assets-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "migIndex": 1, 3 | "data": [ 4 | { 5 | "path": "assets/fonts/Montserrat-Bold.otf", 6 | "sha1": "a88aa713b7cdada0016869ed3548aa9c4e4f18b5" 7 | }, 8 | { 9 | "path": "assets/fonts/Montserrat-Regular.otf", 10 | "sha1": "a3f5403e26df9e0dfcabd5c17bdf29662fbe96c2" 11 | }, 12 | { 13 | "path": "assets/fonts/TSMorabaat-Regular.otf", 14 | "sha1": "ec4a2fa82e0b19b9409cb67737c9b9f99d0be754" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- 1 | # This `.xcode.env` file is versioned and is used to source the environment 2 | # used when running script phases inside Xcode. 3 | # To customize your local environment, you can create an `.xcode.env.local` 4 | # file that is not versioned. 5 | 6 | # NODE_BINARY variable contains the PATH to the node executable. 7 | # 8 | # Customize the NODE_BINARY variable here. 9 | # For example, to use nvm with brew, add the following line 10 | # . "$(brew --prefix nvm)/nvm.sh" --no-use 11 | export NODE_BINARY=$(command -v node) 12 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | // tailwind.config.js 3 | 4 | module.exports = { 5 | content: ["./App.{js,jsx,ts,tsx}","./screens/**/*.{js,jsx,ts,tsx}","./components/**/*.{js,jsx,ts,tsx}","./routers/**/*.{js,jsx,ts,tsx}","./screens/stackNav/**/*.{js,jsx,ts,tsx}"], 6 | theme: { 7 | extend: {}, 8 | colors:{"mainCyan":"#77AEBB","mainGreen":"#AEBB77","mainPink":"#BB77AE","goldenrod":"#DAA520","white":"#ffffff","gray":"#C9C9C9","black":"#000000","red":"#FF0000","slate-300":"#303639","slate-500":"#505d70"} 9 | }, 10 | plugins: [], 11 | } -------------------------------------------------------------------------------- /hooks/useWidthScreen.ts: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from "react"; 2 | import { Dimensions } from "react-native"; 3 | 4 | export default function useWidthScreen() { 5 | const [screenWidth, setScreenWidth] = useState( 6 | Dimensions.get("window").width, 7 | ); 8 | useEffect(() => { 9 | const dimensionListener = Dimensions.addEventListener( 10 | "change", 11 | (dimensions) => { 12 | setScreenWidth(dimensions.window.width); 13 | }, 14 | ); 15 | return () => dimensionListener.remove(); 16 | }, []); 17 | return screenWidth; 18 | } 19 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @format 3 | */ 4 | 5 | import {AppRegistry,Platform} from 'react-native'; 6 | import App from './App'; 7 | import {name as appName} from './app.json'; 8 | import PushNotification from "react-native-push-notification"; 9 | 10 | PushNotification.configure({ 11 | // (required) Called when a remote is received or opened, or local notification is opened 12 | onNotification: function (notification) { 13 | // console.log("NOTIFICATION:", notification); 14 | }, 15 | requestPermissions: Platform.OS === 'ios' 16 | }) 17 | AppRegistry.registerComponent(appName, () => App); 18 | -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'Closet-Archive' 2 | apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) 3 | include ':app' 4 | includeBuild('../node_modules/react-native-gradle-plugin') 5 | include ':react-native-splash-screen' 6 | project(':react-native-splash-screen').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-splash-screen/android') 7 | apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle") 8 | useExpoModules() -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /components/ThemeView.tsx: -------------------------------------------------------------------------------- 1 | import { ComponentProps, ReactElement } from "react"; 2 | import { useColorScheme, View } from "react-native"; 3 | import { colors } from "../utils/colors"; 4 | 5 | export const ThemeView = ({ 6 | classNameStyle, 7 | children, 8 | }: { 9 | children: ReactElement; 10 | classNameStyle?: ComponentProps<"div">["className"]; 11 | }) => { 12 | //used for background usually 13 | const isDarkMode = useColorScheme() === "dark"; 14 | return ( 15 | 19 | {children} 20 | 21 | ); 22 | }; 23 | -------------------------------------------------------------------------------- /android/app/src/release/java/com/myclosetx/ReactNativeFlipper.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) Meta Platforms, Inc. and affiliates. 3 | * 4 | *

This source code is licensed under the MIT license found in the LICENSE file in the root 5 | * directory of this source tree. 6 | */ 7 | package com.myclosetx; 8 | 9 | import android.content.Context; 10 | import com.facebook.react.ReactInstanceManager; 11 | 12 | /** 13 | * Class responsible of loading Flipper inside your React Native application. This is the release 14 | * flavor of it so it's empty as we don't want to load Flipper. 15 | */ 16 | public class ReactNativeFlipper { 17 | public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { 18 | // Do nothing as we don't want to initialize Flipper on Release. 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | ext { 5 | googlePlayServicesVersion = "+" // default: "+" 6 | firebaseMessagingVersion = "21.1.0" // default: "21.1.0" 7 | buildToolsVersion = "33.0.0" 8 | minSdkVersion = 21 9 | compileSdkVersion = 33 10 | targetSdkVersion = 33 11 | 12 | // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP. 13 | ndkVersion = "23.1.7779620" 14 | } 15 | repositories { 16 | google() 17 | mavenCentral() 18 | } 19 | dependencies { 20 | classpath("com.android.tools.build:gradle:7.4.1") 21 | classpath("com.facebook.react:react-native-gradle-plugin") 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /components/ThemeText.tsx: -------------------------------------------------------------------------------- 1 | import { ComponentProps } from "react"; 2 | import { useColorScheme, Text } from "react-native"; 3 | import { colors } from "../utils/colors"; 4 | 5 | export const ThemeText = ({ 6 | classNameStyle, 7 | customStyle, 8 | darkColor = colors.white, 9 | lightColor = colors.gray, 10 | children, 11 | }: { 12 | children: string; 13 | classNameStyle?: ComponentProps<"p">["className"]; 14 | customStyle?: {}; 15 | darkColor?: string; 16 | lightColor?: string; 17 | }) => { 18 | //used for background usually 19 | const isDarkMode = useColorScheme() === "dark"; 20 | return ( 21 | 25 | {children} 26 | 27 | ); 28 | }; 29 | -------------------------------------------------------------------------------- /ios/closetArchiveTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /components/BackButton.tsx: -------------------------------------------------------------------------------- 1 | import { useNavigation } from "@react-navigation/native"; 2 | import { Keyboard, TouchableOpacity, View, useColorScheme } from "react-native"; 3 | import Icon from "react-native-vector-icons/Ionicons"; 4 | import { colors } from "../utils/colors"; 5 | 6 | export const BackButton = () => { 7 | const navigation = useNavigation(); 8 | const isDarkMode = useColorScheme() === "dark"; 9 | return ( 10 | 11 | { 14 | Keyboard.dismiss(); 15 | navigation.goBack(); 16 | }} 17 | > 18 | 23 | 24 | 25 | ); 26 | }; 27 | -------------------------------------------------------------------------------- /utils/exportStoreToJson.ts: -------------------------------------------------------------------------------- 1 | import { RootState, store } from "../redux/store"; // Replace with the correct path to your rootReducer file 2 | import * as ScopedStorage from "react-native-scoped-storage"; 3 | 4 | export const exportStoreToJson = async () => { 5 | if (!store) { 6 | console.log("Store not initialized"); 7 | return; 8 | } 9 | 10 | try { 11 | const state: RootState = store.getState(); 12 | const serializedState = JSON.stringify(state); 13 | 14 | // Create a new file named store.json in the Documents directory 15 | const storePath = await ScopedStorage.createDocument( 16 | "store.json", 17 | "application/json", 18 | serializedState, 19 | "utf8", 20 | ); 21 | if (storePath) { 22 | console.log("Store exported successfully."); 23 | return true; 24 | } else { 25 | return false; 26 | } 27 | } catch (error) { 28 | console.error("Error exporting store:", error); 29 | return false; 30 | } 31 | }; 32 | -------------------------------------------------------------------------------- /ios/closetArchive/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "scale" : "1x", 46 | "size" : "1024x1024" 47 | } 48 | ], 49 | "info" : { 50 | "author" : "xcode", 51 | "version" : 1 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Bahaa Tuffaha 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /redux/store.ts: -------------------------------------------------------------------------------- 1 | import { combineReducers, configureStore } from "@reduxjs/toolkit"; 2 | import categoriesSlice from "./categoriesSlice"; 3 | import itemsSlice from "./itemsSlice"; 4 | import FilesystemStorage from "redux-persist-filesystem-storage"; 5 | import { 6 | persistStore, 7 | persistReducer, 8 | FLUSH, 9 | REHYDRATE, 10 | PAUSE, 11 | PERSIST, 12 | PURGE, 13 | REGISTER, 14 | } from "redux-persist"; 15 | import settingsSlice from "./settingsSlice"; 16 | 17 | const persistConfig = { 18 | key: "root", 19 | storage: FilesystemStorage, 20 | }; 21 | const rootReducer = combineReducers({ 22 | CategoryList: categoriesSlice, 23 | itemsList: itemsSlice, 24 | settings: settingsSlice, 25 | }); 26 | export type RootState = ReturnType; 27 | const persistedReducer = persistReducer(persistConfig, rootReducer); 28 | 29 | export const store = configureStore({ 30 | reducer: persistedReducer, 31 | middleware: (getDefaultMiddleware) => 32 | getDefaultMiddleware({ 33 | serializableCheck: { 34 | ignoredActions: [FLUSH, REHYDRATE, PAUSE, PERSIST, PURGE, REGISTER], 35 | }, 36 | }), 37 | }); 38 | 39 | export const persistor = persistStore(store); 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | # 3 | .DS_Store 4 | 5 | # Xcode 6 | # 7 | build/ 8 | *.pbxuser 9 | !default.pbxuser 10 | *.mode1v3 11 | !default.mode1v3 12 | *.mode2v3 13 | !default.mode2v3 14 | *.perspectivev3 15 | !default.perspectivev3 16 | xcuserdata 17 | *.xccheckout 18 | *.moved-aside 19 | DerivedData 20 | *.hmap 21 | *.ipa 22 | *.xcuserstate 23 | ios/.xcode.env.local 24 | 25 | # Android/IntelliJ 26 | # 27 | build/ 28 | .idea 29 | .gradle 30 | local.properties 31 | *.iml 32 | *.hprof 33 | .cxx/ 34 | *.keystore 35 | !debug.keystore 36 | 37 | # node.js 38 | # 39 | node_modules/ 40 | npm-debug.log 41 | yarn-error.log 42 | 43 | # fastlane 44 | # 45 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 46 | # screenshots whenever they are needed. 47 | # For more information about the recommended setup visit: 48 | # https://docs.fastlane.tools/best-practices/source-control/ 49 | 50 | **/fastlane/report.xml 51 | **/fastlane/Preview.html 52 | **/fastlane/screenshots 53 | **/fastlane/test_output 54 | 55 | # Bundle artifact 56 | *.jsbundle 57 | 58 | # Ruby / CocoaPods 59 | /ios/Pods/ 60 | /vendor/bundle/ 61 | 62 | # Temporary files created by Metro to check the health of the file watcher 63 | .metro-health-check* 64 | -------------------------------------------------------------------------------- /ios/closetArchive/AppDelegate.mm: -------------------------------------------------------------------------------- 1 | #import "AppDelegate.h" 2 | 3 | #import 4 | 5 | @implementation AppDelegate 6 | 7 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 8 | { 9 | self.moduleName = @"Closet-Archive"; 10 | // You can add your custom initial props in the dictionary below. 11 | // They will be passed down to the ViewController used by React Native. 12 | self.initialProps = @{}; 13 | 14 | return [super application:application didFinishLaunchingWithOptions:launchOptions]; 15 | } 16 | 17 | - (NSURL *)sourceURLForBridge:(RCTBridge *)bridge 18 | { 19 | #if DEBUG 20 | return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"]; 21 | #else 22 | return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"]; 23 | #endif 24 | } 25 | 26 | /// This method controls whether the `concurrentRoot`feature of React18 is turned on or off. 27 | /// 28 | /// @see: https://reactjs.org/blog/2022/03/29/react-v18.html 29 | /// @note: This requires to be rendering on Fabric (i.e. on the New Architecture). 30 | /// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`. 31 | - (BOOL)concurrentRootEnabled 32 | { 33 | return true; 34 | } 35 | 36 | @end 37 | -------------------------------------------------------------------------------- /components/SpriteAnimator.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, useRef } from "react"; 2 | import { View, Image } from "react-native"; 3 | 4 | const SpriteAnimator = ({ sheet, columns, size, fps = 16, play = true }) => { 5 | const imgRef = useRef(null); 6 | const [imgWidth, setImgWidth] = useState(0); 7 | const [spriteIndex, setSpriteIndex] = useState(0); 8 | 9 | useEffect(() => { 10 | if (imgRef.current && imgWidth == 0) { 11 | setImgWidth((_) => size * columns); 12 | } 13 | }, [imgRef, imgWidth]); 14 | 15 | useEffect(() => { 16 | if (play) { 17 | if (spriteIndex < columns - 1) { 18 | setTimeout(() => { 19 | setSpriteIndex((prev) => prev + 1); 20 | }, 1000 / fps); 21 | } else { 22 | setTimeout(() => { 23 | setSpriteIndex(0); 24 | }, 1000 / fps); 25 | } 26 | } else if (!play && spriteIndex > 0) { 27 | setSpriteIndex(0); 28 | } 29 | }, [spriteIndex]); 30 | 31 | return ( 32 | 35 | 45 | 46 | ); 47 | }; 48 | 49 | export default SpriteAnimator; -------------------------------------------------------------------------------- /App.tsx: -------------------------------------------------------------------------------- 1 | import { 2 | I18nManager, 3 | SafeAreaView, 4 | StatusBar, 5 | useColorScheme, 6 | } from "react-native"; 7 | import Navigator from "./routers/stack"; 8 | import { PaperProvider } from "react-native-paper"; 9 | import SplashScreen from "react-native-splash-screen"; 10 | import { useEffect } from "react"; 11 | import { GestureHandlerRootView } from "react-native-gesture-handler"; 12 | import { Provider as ReduxProvider } from "react-redux"; 13 | import { store, persistor } from "./redux/store"; 14 | import { PersistGate } from "redux-persist/integration/react"; 15 | 16 | import { colors } from "./utils/colors"; 17 | 18 | function App(): JSX.Element { 19 | const isDarkMode = useColorScheme() === "dark"; 20 | 21 | const backgroundStyle = { 22 | backgroundColor: isDarkMode ? colors.darkblue : colors.white, 23 | }; 24 | 25 | useEffect(() => { 26 | I18nManager.allowRTL(false); 27 | I18nManager.forceRTL(false); 28 | SplashScreen.hide(); 29 | }, []); 30 | return ( 31 | 32 | 33 | 34 | 35 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | ); 47 | } 48 | 49 | export default App; 50 | -------------------------------------------------------------------------------- /components/CustomInput.tsx: -------------------------------------------------------------------------------- 1 | import { StyleSheet, TextInput, View, useColorScheme } from "react-native"; 2 | import { TextInput as TextInput2 } from "react-native-paper"; 3 | import { Props } from "react-native-paper/lib/typescript/src/components/TextInput/TextInput"; 4 | import { colors } from "../utils/colors"; 5 | 6 | export interface CustomInputProps extends Props { 7 | left?: React.ReactElement; 8 | right?: React.ReactElement; 9 | textArea?: boolean; 10 | } 11 | export const CustomInput = ({ 12 | left, 13 | right, 14 | textArea = false, 15 | ...props 16 | }: CustomInputProps) => ( 17 | ( 28 | 29 | {left && {left}} 30 | 34 | {right && {right}} 35 | 36 | )} 37 | /> 38 | ); 39 | 40 | const styles = StyleSheet.create({ 41 | customLeft: { 42 | position: "absolute", 43 | left: 0, 44 | marginVertical: 15, 45 | paddingHorizontal: 10, 46 | }, 47 | customRight: { 48 | position: "absolute", 49 | right: 0, 50 | marginVertical: 15, 51 | paddingHorizontal: 10, 52 | }, 53 | }); 54 | -------------------------------------------------------------------------------- /components/ImageViewer.tsx: -------------------------------------------------------------------------------- 1 | import { Dispatch, SetStateAction, useState } from "react"; 2 | import { TouchableOpacity } from "react-native-gesture-handler"; 3 | import addImage from "../assets/images/addImage.png"; 4 | import { Image } from "react-native"; 5 | import CustomModal from "./CustomModal"; 6 | import useWidthScreen from "../hooks/useWidthScreen"; 7 | 8 | export const ImageViewer = ({ 9 | imageUrl, 10 | setImageModalVisible, 11 | }: { 12 | imageUrl: string; 13 | setImageModalVisible: Dispatch>; 14 | }) => { 15 | const [showImageFull, setShowImageFull] = useState(false); 16 | const screenWidth = useWidthScreen(); 17 | return ( 18 | <> 19 | 25 | 33 | 34 | imageUrl != "" && setShowImageFull(true)} 36 | onPress={() => { 37 | setImageModalVisible(true); 38 | }} 39 | > 40 | 48 | 49 | 50 | ); 51 | }; 52 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "esnext", 4 | "module": "esnext", 5 | "lib": ["esnext"], 6 | "allowJs": true, 7 | "jsx": "react-native", 8 | "noEmit": true, 9 | "isolatedModules": false, 10 | "strict": true, 11 | "moduleResolution": "node", 12 | "allowSyntheticDefaultImports": true, 13 | "esModuleInterop": true, 14 | // ? Custom ones 15 | "skipLibCheck": true, 16 | "resolveJsonModule": true, 17 | "noImplicitAny": true, 18 | "strictNullChecks": true, 19 | "strictFunctionTypes": true, 20 | "strictPropertyInitialization": true, 21 | "noImplicitThis": true, 22 | "alwaysStrict": true, 23 | "noUnusedLocals": true, 24 | "noUnusedParameters": true, 25 | "noImplicitReturns": true, 26 | "noFallthroughCasesInSwitch": true, 27 | "forceConsistentCasingInFileNames": true, 28 | // ? Babel Plugin Module Resolver 29 | "baseUrl": "./src", 30 | "paths": { 31 | "@shared-components/*": ["./shared/components/*"], 32 | "@shared-constants": ["./shared/constants"], 33 | "@font-size": ["./shared/theme/font-size"], 34 | "@api": ["./services/api/index"], 35 | "@fonts": ["./shared/theme/fonts"], 36 | "@colors": ["./shared/theme/colors"], 37 | "@theme/*": ["./shared/theme/*"], 38 | "@services/*": ["./services/*"], 39 | "@screens/*": ["./screens/*"], 40 | "@utils": ["./utils/"], 41 | "@assets": ["./assets/"], 42 | "@local-storage": ["./services/local-storage"] 43 | } 44 | }, 45 | "extends": "@tsconfig/react-native/tsconfig.json", 46 | "exclude": [ 47 | "node_modules", 48 | "babel.config.js", 49 | "metro.config.js", 50 | "jest.config.js" 51 | ] 52 | } 53 | -------------------------------------------------------------------------------- /hooks/useHeatmap.ts: -------------------------------------------------------------------------------- 1 | import { useSelector } from "react-redux"; 2 | import { RootState } from "../redux/store"; 3 | import { useMemo } from "react"; 4 | 5 | export default function useHeatmap(itemLogs: string[]) { 6 | const storedEvents = useSelector((state: RootState) => state.itemsList.logs); 7 | const currentDate = new Date(); 8 | 9 | const oneMonthAgo = new Date(); 10 | oneMonthAgo.setMonth(currentDate.getMonth() - 1); 11 | 12 | const oneWeekAgo = new Date(); 13 | oneWeekAgo.setDate(oneWeekAgo.getDate() - 7); 14 | 15 | const heatmapColor = useMemo(() => { 16 | const filteredEventsLastMonth = storedEvents.filter((x) => { 17 | const eventDate = new Date(JSON.parse(x.eventDate)); 18 | return ( 19 | eventDate >= oneMonthAgo && 20 | eventDate <= currentDate && 21 | eventDate < oneWeekAgo && 22 | itemLogs?.includes(x.eventId) 23 | ); 24 | }); 25 | const filteredEventsLastWeek = storedEvents.filter((x) => { 26 | const eventDate = new Date(JSON.parse(x.eventDate)); 27 | return ( 28 | eventDate >= oneWeekAgo && 29 | eventDate <= currentDate && 30 | itemLogs?.includes(x.eventId) 31 | ); 32 | }); 33 | 34 | // const filteredEventsMoreThanAMonthAgo = storedEvents.filter((x) => { 35 | // const eventDate = new Date(JSON.parse(x.eventDate)); 36 | // return eventDate < oneMonthAgo; 37 | // }); 38 | 39 | if (filteredEventsLastWeek.length > 0) { 40 | return "rgba(119, 174, 187, 0.5)"; 41 | } else if (filteredEventsLastMonth.length > 0) { 42 | return "rgba(247, 198, 0, 0.5)"; 43 | } else { 44 | return "rgba(211, 0, 71, 0.5)"; 45 | } 46 | }, [itemLogs, storedEvents]); 47 | return heatmapColor; 48 | } 49 | -------------------------------------------------------------------------------- /android/app/src/main/java/com/myclosetx/MainActivity.java: -------------------------------------------------------------------------------- 1 | package com.myclosetx; 2 | import expo.modules.ReactActivityDelegateWrapper; 3 | 4 | import com.facebook.react.ReactActivity; 5 | import com.facebook.react.ReactActivityDelegate; 6 | import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint; 7 | import com.facebook.react.defaults.DefaultReactActivityDelegate; 8 | import android.os.Bundle; 9 | import org.devio.rn.splashscreen.SplashScreen; 10 | 11 | public class MainActivity extends ReactActivity { 12 | @Override 13 | protected void onCreate(Bundle savedInstanceState) { 14 | SplashScreen.show(this); // here 15 | super.onCreate(savedInstanceState); 16 | } 17 | /** 18 | * Returns the name of the main component registered from JavaScript. This is used to schedule 19 | * rendering of the component. 20 | */ 21 | @Override 22 | protected String getMainComponentName() { 23 | return "Closet-Archive"; 24 | } 25 | 26 | /** 27 | * Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link 28 | * DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React 29 | * (aka React 18) with two boolean flags. 30 | */ 31 | @Override 32 | protected ReactActivityDelegate createReactActivityDelegate() { 33 | return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, new DefaultReactActivityDelegate( 34 | this, 35 | getMainComponentName(), 36 | // If you opted-in for the New Architecture, we enable the Fabric Renderer. 37 | DefaultNewArchitectureEntryPoint.getFabricEnabled(), // fabricEnabled 38 | // If you opted-in for the New Architecture, we enable Concurrent React (i.e. React 18). 39 | DefaultNewArchitectureEntryPoint.getConcurrentReactEnabled() // concurrentRootEnabled 40 | )); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /components/CustomModal.tsx: -------------------------------------------------------------------------------- 1 | import { Dispatch, ReactElement, SetStateAction } from "react"; 2 | import { useColorScheme } from "react-native"; 3 | import { colors } from "../utils/colors"; 4 | import { Button, Dialog, Portal } from "react-native-paper"; 5 | import { localization } from "../utils/localization"; 6 | import { useSelector } from "react-redux"; 7 | import { RootState } from "../redux/store"; 8 | const CustomModal = ({ 9 | setVisible, 10 | visible, 11 | label, 12 | minHeight = 200, 13 | maxHeight, 14 | showClose = true, 15 | children, 16 | }: { 17 | setVisible: Dispatch>; 18 | visible: boolean; 19 | label?: string; 20 | minHeight?: number; 21 | maxHeight?: number; 22 | showClose?: boolean; 23 | children: ReactElement; 24 | }) => { 25 | const isDarkMode = useColorScheme() === "dark"; 26 | const storedSettings = useSelector((state: RootState) => state.settings); 27 | return ( 28 | 29 |

setVisible(false)} 32 | style={{ 33 | minHeight: minHeight, 34 | maxHeight: maxHeight, 35 | backgroundColor: isDarkMode ? colors.gray : colors.white, 36 | }} 37 | > 38 | {label && ( 39 | 43 | {label} 44 | 45 | )} 46 | {children} 47 | {showClose && ( 48 | 49 | 52 | 53 | )} 54 | 55 | 56 | ); 57 | }; 58 | export default CustomModal; 59 | -------------------------------------------------------------------------------- /ios/closetArchive/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | Closet-Archive 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(MARKETING_VERSION) 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | $(CURRENT_PROJECT_VERSION) 25 | LSRequiresIPhoneOS 26 | 27 | NSAppTransportSecurity 28 | 29 | NSExceptionDomains 30 | 31 | localhost 32 | 33 | NSExceptionAllowsInsecureHTTPLoads 34 | 35 | 36 | 37 | 38 | NSLocationWhenInUseUsageDescription 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UISupportedInterfaceOrientations 47 | 48 | UIInterfaceOrientationPortrait 49 | UIInterfaceOrientationLandscapeLeft 50 | UIInterfaceOrientationLandscapeRight 51 | 52 | UIViewControllerBasedStatusBarAppearance 53 | 54 | UIAppFonts 55 | 56 | TSMorabaat-Regular.otf 57 | Montserrat-Bold.otf 58 | Montserrat-Regular.otf 59 | 60 | 61 | 62 | -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m 13 | org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | 20 | # AndroidX package structure to make it clearer which packages are bundled with the 21 | # Android operating system, and which are packaged with your app's APK 22 | # https://developer.android.com/topic/libraries/support-library/androidx-rn 23 | android.useAndroidX=true 24 | # Automatically convert third-party libraries to use AndroidX 25 | android.enableJetifier=true 26 | 27 | # Version of flipper SDK to use with React Native 28 | FLIPPER_VERSION=0.125.0 29 | 30 | # Use this property to specify which architecture you want to build. 31 | # You can also override it from the CLI using 32 | # ./gradlew -PreactNativeArchitectures=x86_64 33 | reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 34 | 35 | # Use this property to enable support to the new architecture. 36 | # This will allow you to use TurboModules and the Fabric render in 37 | # your application. You should enable this flag either if you want 38 | # to write custom TurboModules/Fabric components OR use libraries that 39 | # are providing them. 40 | newArchEnabled=false 41 | 42 | # Use this property to enable or disable the Hermes JS engine. 43 | # If set to false, you will be using JSC instead. 44 | hermesEnabled=true 45 | --------------------------------------------------------------------------------