Skip to content

Instantly share code, notes, and snippets.

class MainActivity : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContent {
ComposePlaygroundTheme {
val zoomContentState = remember { ZoomContentState() }
ZoomableContent(zoomContentState) {
Text(
@K1rakishou
K1rakishou / InMemorySharedPreferences.kt
Created September 17, 2017 16:00
Tiny class that will help in testing SharedPreferences
package com.kirakishou.fixmypc.fixmypcapp.helper
import android.content.SharedPreferences
import java.lang.ref.WeakReference
import java.util.*
/**
* Created by kirakishou on 9/17/2017.
*/
class InMemorySharedPreferences : SharedPreferences {