This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package se.warting.playground.ui.theme | |
import androidx.compose.ui.graphics.Color | |
/** | |
* Material design color palette with compose colors written in kotlin | |
* | |
* Taken from https://material.io/design/color/the-color-system.html | |
* | |
* These color palettes, originally created by Material Design in 2014, are comprised of colors |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.Application; | |
import android.arch.lifecycle.LiveData; | |
import android.content.Context; | |
import android.database.ContentObserver; | |
import android.database.Cursor; | |
import android.net.Uri; | |
import android.os.AsyncTask; | |
import android.os.Handler; | |
import android.support.annotation.NonNull; | |
import android.support.annotation.Nullable; |