Skip to content

Commit

Permalink
Update Drawable & Color & String.
Browse files Browse the repository at this point in the history
  • Loading branch information
BasemKhater committed Apr 5, 2024
1 parent cee6fd8 commit 4ca9278
Show file tree
Hide file tree
Showing 19 changed files with 69 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/main/res/drawable/baseline_arrow_forward_24.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<vector android:autoMirrored="true" android:height="24dp"
android:tint="#F0EBFF" android:viewportHeight="24"
android:viewportWidth="24" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M8.59,16.59L13.17,12 8.59,7.41 10,6l6,6 -6,6 -1.41,-1.41z"/>
</vector>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_badge.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_menu6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_profile0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_profile1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_profile2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/src/main/res/drawable/icon_profile3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions app/src/main/res/drawable/rounded_gradient_rectangle.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="15dp" />
<gradient
android:angle="270"
android:startColor="#8561FF"
android:endColor="#008561FF"
android:type="linear" />
</shape>
10 changes: 10 additions & 0 deletions app/src/main/res/drawable/rounded_gradient_rectangle2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="15dp" />
<gradient
android:angle="270"
android:startColor="#6739FF"
android:endColor="#006739FF"
android:type="linear" />
</shape>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,7 @@
<color name="lavender_blue">#D0C2FF</color>
<color name="grey_500">#313131</color>
<color name="primary_100">#D0C2FF</color>
<color name="grey_400">#5A5A5A</color>
<color name="white_700">#A3A3A3</color>

</resources>
36 changes: 36 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,5 +98,41 @@
<string name="crush_today_s_workout">Crush Today’s Workout</string>
<string name="today_s_diet">Today’s diet</string>
<string name="view">view</string>
<string name="save">Save</string>
<string name="gender">Gender</string>
<string name="age">Age</string>
<string name="weight">Weight</string>
<string name="height">Height</string>
<string name="more">More</string>
<string name="my_profile">My profile</string>
<string name="progress">Progress</string>
<string name="injury_care_center">Injury Care Center</string>
<string name="challenges">Challenges</string>
<string name="reminders">Reminders</string>
<string name="settings">Settings</string>
<string name="test">test</string>
<string name="achievements">Achievements</string>
<string name="badge">Badge</string>
<string name="challenge_champion">Challenge\nChampion</string>
<string name="record_breaker">Record\nBreaker</string>
<string name="personal_info">Personal info</string>
<string name="edit">Edit</string>
<string name="goal1">Goal</string>
<string name="fitness_level1">fitness level</string>
<string name="intermediate1">intermediate</string>
<string name="bmi">Bmi</string>
<string name="daily_calories">daily calories</string>
<string name="modify">Modify</string>
<string name="exercise">Exercise</string>
<string name="nutrition">Nutrition</string>
<string name="my_target_values">My target values</string>
<string name="target_weight">Target weight</string>
<string name="target_calories">Target calories</string>
<string name="my_activity">My Activity</string>
<string name="view_all">view all</string>
<string name="age_hint">age</string>
<string name="weight_hint">weight</string>
<string name="height_hint">height</string>


</resources>
6 changes: 6 additions & 0 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomDateTextAppearance" parent="android:TextAppearance.Widget.TextView">
<item name="android:textColor">#FFFFFF</item>
</style>
</resources>

0 comments on commit 4ca9278

Please sign in to comment.