urllauncher: request dark theme from sites

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-10-08 01:36:14 +05:30
parent da13725bea
commit 20e45d4d42
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -9,6 +9,7 @@ class UrlLauncherImpl(private val context: Context) : UrlLauncher {
val customTabsIntent = CustomTabsIntent.Builder()
.setShareState(CustomTabsIntent.SHARE_STATE_ON)
.setShowTitle(true)
.setColorScheme(CustomTabsIntent.COLOR_SCHEME_DARK)
.build()
customTabsIntent.launchUrl(context, Uri.parse(url))
}