Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PatilShreyas committed Jun 10, 2019
1 parent 80bb77c commit 94b8481
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
Binary file added GIFs/AnimatedBottomSheetMaterialDialog.gif
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 GIFs/AnimatedMaterialDialog.gif
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 GIFs/BottomSheetMaterialDialog.gif
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 GIFs/SimpleMaterialDialog.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

// Material Dialog Library
implementation 'com.shreyaspatil:MaterialDialog:1.0'

// Material Design Library
implementation 'com.google.android.material:material:1.0.0'

Expand All @@ -33,5 +36,5 @@ dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(path: ':MaterialDialogLibrary')
//implementation project(path: ':MaterialDialogLibrary')
}
10 changes: 5 additions & 5 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<LinearLayout
android:padding="16dp"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical">
Expand All @@ -16,7 +16,7 @@
android:id="@+id/button_simple_dialog"
android:layout_marginTop="16dp"
android:textAllCaps="false"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Simple Material Dialog" />
Expand All @@ -25,7 +25,7 @@
android:id="@+id/button_simple_bottomsheet_dialog"
android:layout_marginTop="16dp"
android:textAllCaps="false"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Simple Bottomsheet Material Dialog" />
Expand All @@ -34,7 +34,7 @@
android:id="@+id/button_animated_dialog"
android:layout_marginTop="16dp"
android:textAllCaps="false"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Animated Material Dialog" />
Expand All @@ -43,7 +43,7 @@
android:id="@+id/button_animated_bottomsheet_dialog"
android:layout_marginTop="16dp"
android:textAllCaps="false"
android:layout_width="wrap_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Animated Bottomsheet Material Dialog" />
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#E53935</color>
<color name="colorPrimaryDark">#E53935</color>
<color name="colorAccent">#F4511E</color>
<color name="colorPrimary">#EF5350</color>
<color name="colorPrimaryDark">#EF5350</color>
<color name="colorAccent">#F44336</color>
</resources>

0 comments on commit 94b8481

Please sign in to comment.