mirror of
https://github.com/melihaksoy/Android-Kotlin-Modulerized-CleanArchitecture.git
synced 2026-03-21 00:49:53 +01:00
Initial commit
This commit is contained in:
7
core/src/main/res/values/colors.xml
Normal file
7
core/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#008577</color>
|
||||
<color name="colorPrimaryDark">#00574B</color>
|
||||
<color name="colorAccent">#D81B60</color>
|
||||
<color name="lightGray">#8F8F8F</color>
|
||||
</resources>
|
||||
5
core/src/main/res/values/dimens.xml
Normal file
5
core/src/main/res/values/dimens.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<dimen name="padding_standard">8dp</dimen>
|
||||
<dimen name="corner_radius_standard">11dp</dimen>
|
||||
</resources>
|
||||
15
core/src/main/res/values/strings.xml
Normal file
15
core/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<resources>
|
||||
<string name="dummy_long_text">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
|
||||
incididunt ut labore et dolore
|
||||
magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
|
||||
consequat. Duis aute irure dolor in
|
||||
reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
|
||||
non proident, sunt in culpa qui officia
|
||||
deserunt mollit anim id est laborum
|
||||
</string>
|
||||
|
||||
<string name="retry">Retry</string>
|
||||
|
||||
<!--Actions-->
|
||||
<string name="action_detail">action.detail.open</string>
|
||||
</resources>
|
||||
35
core/src/main/res/values/styles.xml
Normal file
35
core/src/main/res/values/styles.xml
Normal file
@@ -0,0 +1,35 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
|
||||
<!--Styles-->
|
||||
|
||||
<style name="TitleTextStyle">
|
||||
<item name="android:singleLine">true</item>
|
||||
</style>
|
||||
|
||||
<style name="ShortDescriptionTextStyle">
|
||||
<item name="android:ellipsize">end</item>
|
||||
<item name="android:maxLines">@integer/common_max_lines</item>
|
||||
<item name="android:gravity">center|left</item>
|
||||
</style>
|
||||
|
||||
<style name="DescriptionTextStyle">
|
||||
|
||||
</style>
|
||||
|
||||
<!--Text appearances-->
|
||||
|
||||
<style name="TitleTextAppearance" parent="TextAppearance.AppCompat.Title" />
|
||||
|
||||
<style name="DescriptionTextAppearance" parent="TextAppearance.AppCompat.Body1">
|
||||
<item name="android:textColor">@color/lightGray</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||
4
core/src/main/res/values/values.xml
Normal file
4
core/src/main/res/values/values.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<integer name="common_max_lines">5</integer>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user