Skip to content

Commit 181f06f

Browse files
committed
bug Fixing
1 parent eaa59b3 commit 181f06f

5 files changed

Lines changed: 16 additions & 63 deletions

File tree

.idea/jarRepositories.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</h1>
77

88
<div align="center">
9-
<a><img src="https://img.shields.io/badge/Version-2.0.4-brightgreen.svg?style=flat"></a>
9+
<a><img src="https://img.shields.io/badge/Version-2.0.5-brightgreen.svg?style=flat"></a>
1010
<a><img src="https://img.shields.io/badge/ID-gzeinnumer-blue.svg?style=flat"></a>
1111
<a><img src="https://img.shields.io/badge/Java-Suport-green?logo=java&style=flat"></a>
1212
<a><img src="https://img.shields.io/badge/Koltin-Suport-green?logo=kotlin&style=flat"></a>
@@ -32,7 +32,8 @@ allprojects {
3232
dependencies {
3333
...
3434
implementation 'com.github.gzeinnumer:MyLibDialogSearchView:version'
35-
implementation 'com.google.android.material:material:1.2.0'
35+
implementation 'com.github.gzeinnumer:MyLibStyle:0.1.3'
36+
implementation 'com.google.android.material:material:1.2.1'
3637
}
3738
```
3839

@@ -263,6 +264,8 @@ You can Customize your dialog UI. [**ReadMore**](https://github.com/gzeinnumer/M
263264
- First Release
264265
- **2.0.4**
265266
- Add animation and set custom animation show
267+
- **2.0.5**
268+
- Bug Fixing
266269

267270
---
268271

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ allprojects {
1616
repositories {
1717
google()
1818
jcenter()
19+
20+
maven { url 'https://jitpack.io' }
1921
}
2022
}
2123

lib/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@ android {
3131
dependencies {
3232

3333
implementation 'androidx.appcompat:appcompat:1.2.0'
34-
implementation 'com.google.android.material:material:1.2.1'
3534
testImplementation 'junit:junit:4.+'
3635
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
3736
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
37+
38+
implementation 'com.github.gzeinnumer:MyLibStyle:0.1.3'
39+
implementation 'com.google.android.material:material:1.2.1'
3840
}

lib/src/main/res/values/styles.xml

Lines changed: 1 addition & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<item name="colorPrimaryDark">@color/deep_orange_700</item>
1414
<item name="colorAccent">@color/lime_A100</item>
1515
</style>
16+
1617
<style name="DialogStyle" parent="Theme.MaterialComponents.Light.Dialog">
1718
<item name="android:windowMinWidthMajor">80%</item>
1819
<item name="android:windowMinWidthMinor">80%</item>
@@ -32,64 +33,4 @@
3233
<item name="android:windowExitAnimation">@anim/slide_down</item>
3334
</style>
3435

35-
<style name="MyDivider">
36-
<item name="android:layout_width">match_parent</item>
37-
<item name="android:layout_height">1dp</item>
38-
<item name="android:layout_marginTop">@dimen/text_margin</item>
39-
<item name="android:background">@color/divider</item>
40-
</style>
41-
42-
<style name="MyTextHeader">
43-
<item name="android:layout_width">wrap_content</item>
44-
<item name="android:layout_height">wrap_content</item>
45-
<item name="android:alpha">1</item>
46-
<item name="android:textStyle">bold</item>
47-
<item name="android:textColor">@color/text_header</item>
48-
<item name="android:textSize">@dimen/h3</item>
49-
<item name="android:layout_marginTop">@dimen/text_margin</item>
50-
</style>
51-
52-
<style name="MyTextContent">
53-
<item name="android:layout_width">wrap_content</item>
54-
<item name="android:layout_height">wrap_content</item>
55-
<item name="android:alpha">1</item>
56-
<item name="android:textColor">@color/text_content</item>
57-
<item name="android:textSize">@dimen/h3</item>
58-
</style>
59-
60-
<style name="MyButtonText" parent="Widget.MaterialComponents.Button.TextButton">
61-
<item name="android:layout_height">@dimen/button_height</item>
62-
<item name="android:layout_width">wrap_content</item>
63-
<item name="android:textColor">@color/colorPrimary</item>
64-
</style>
65-
66-
<style name="MyButtonOutlined" parent="Widget.MaterialComponents.Button.OutlinedButton">
67-
<item name="android:layout_height">@dimen/button_height</item>
68-
<item name="android:layout_width">wrap_content</item>
69-
</style>
70-
71-
<style name="MyButtonContained">
72-
<item name="android:layout_height">@dimen/button_height</item>
73-
<item name="android:layout_width">wrap_content</item>
74-
</style>
75-
76-
<style name="MyButtonIcon" parent="Widget.MaterialComponents.Button.Icon">
77-
<item name="android:layout_height">@dimen/button_height</item>
78-
<item name="android:layout_width">wrap_content</item>
79-
</style>
80-
81-
<style name="MyTextInputLayoutOutlinedBox" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
82-
<item name="android:layout_width">match_parent</item>
83-
<item name="android:layout_height">wrap_content</item>
84-
<item name="android:layout_marginTop">@dimen/space_between_edittext</item>
85-
</style>
86-
87-
<style name="MyTextInputEditText">
88-
<item name="android:layout_width">match_parent</item>
89-
<item name="android:layout_height">wrap_content</item>
90-
<item name="android:alpha">1</item>
91-
<item name="android:textColor">@color/text_content</item>
92-
<item name="android:textSize">@dimen/h3</item>
93-
</style>
94-
9536
</resources>

0 commit comments

Comments
 (0)