Remove border from FloatingActionButtons in HomeFragment and SendTransactionFragment.

This was the blue border that appeared around the rounded buttons in the mentioned screens.
This commit is contained in:
Severiano Jaramillo 2019-01-09 18:04:52 -06:00
parent 941a558a08
commit 5075c59b7b
3 changed files with 6 additions and 1 deletions

View file

@ -86,7 +86,7 @@ dependencies {
implementation 'org.bitcoinj:bitcoinj-core:0.14.3'
implementation 'com.moldedbits.r2d2:r2d2:1.0.1'
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
implementation 'com.afollestad.material-dialogs:core:2.0.0-rc3'
implementation 'com.afollestad.material-dialogs:core:2.0.0-rc7'
// Android Debug Database
debugImplementation 'com.amitshekhar.android:debug-db:1.0.4'

View file

@ -42,6 +42,7 @@
app:fabSize="auto"
app:fabCustomSize="120dp"
app:maxImageSize="70dp"
app:borderWidth="0dp"
android:backgroundTint="@color/colorReceive"
android:src="@drawable/ic_receive"
app:layout_constraintTop_toTopOf="parent"
@ -68,6 +69,7 @@
android:layout_height="wrap_content"
app:fabSize="mini"
android:src="@drawable/ic_camera"
app:borderWidth="0dp"
android:backgroundTint="@color/colorSend"
app:layout_constraintTop_toTopOf="@id/fabSendTransaction"
app:layout_constraintBottom_toBottomOf="@id/fabSendTransaction"
@ -81,6 +83,7 @@
app:fabSize="auto"
app:fabCustomSize="120dp"
app:maxImageSize="70dp"
app:borderWidth="0dp"
android:backgroundTint="@color/colorSend"
android:src="@drawable/ic_send"
app:layout_constraintTop_toTopOf="parent"

View file

@ -153,6 +153,7 @@
app:fabCustomSize="32dp"
app:maxImageSize="20dp"
app:srcCompat="@drawable/ic_camera"
app:borderWidth="0dp"
android:backgroundTint="@color/colorSend"
app:layout_constraintStart_toEndOf="@id/cameraVerticalGuideline"
app:layout_constraintTop_toBottomOf="@+id/tvScan"/>
@ -186,6 +187,7 @@
app:fabCustomSize="90dp"
app:maxImageSize="70dp"
app:srcCompat="@drawable/ic_arrow_forward"
app:borderWidth="0dp"
app:layout_constraintEnd_toEndOf="@id/vSend"
app:layout_constraintTop_toTopOf="@+id/vSend" />