Show notification when order status change

This commit is contained in:
phanhuuloi27
2022-06-06 12:27:54 +07:00
parent 82c67f4b93
commit 9b09517c5e
7 changed files with 147 additions and 10 deletions
+1
View File
@@ -53,6 +53,7 @@ dependencies {
implementation 'com.google.firebase:firebase-storage:10.2.0'
implementation 'com.github.jd-alexander:android-flat-button:v1.1'
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
implementation 'com.jaredrummler:material-spinner:1.1.0'
}
apply plugin: 'com.google.gms.google-services'
@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardElevation="4dp"
>
<com.jaredrummler.materialspinner.MaterialSpinner
android:id="@+id/statusSpinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</com.google.android.material.card.MaterialCardView>