Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit aa7248ec authored by narinder Rana's avatar narinder Rana
Browse files

update scheduled add fab button color value

parent 0b333171
Loading
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -32,7 +32,10 @@ import com.moez.QKSMS.common.util.extensions.setBackgroundTint
import com.moez.QKSMS.common.util.extensions.setTint
import dagger.android.AndroidInjection
import kotlinx.android.synthetic.main.collapsing_toolbar.*
import kotlinx.android.synthetic.main.main_activity.*
import kotlinx.android.synthetic.main.scheduled_activity.*
import kotlinx.android.synthetic.main.scheduled_activity.compose
import kotlinx.android.synthetic.main.scheduled_activity.empty
import javax.inject.Inject


@@ -80,8 +83,12 @@ class ScheduledActivity : QkThemedActivity(), ScheduledView {

        sampleMessage.setBackgroundTint(ContextCompat.getColor(this, R.color.tools_theme))
        sampleMessage.setTextColor(ContextCompat.getColor(this, R.color.white))
        compose.setTint(ContextCompat.getColor(this, R.color.tools_theme))
        compose.setBackgroundTint(ContextCompat.getColor(this, R.color.colorPrimaryDark))

        // Set the FAB compose icon color
        compose.setTint(ContextCompat.getColor(this, R.color.colorPrimaryDark))
        //set the FAB background color
        compose.setBackgroundTint(ContextCompat.getColor(this, R.color.tools_theme))


    }