Skip to content

Instantly share code, notes, and snippets.

CREATE TABLE IF NOT EXISTS User (
idToken TEXT NOT NULL ,
email TEXT NOT NULL,
refreshToken TEXT,
name TEXT
);
insertUser:
INSERT INTO User(idToken,email,refreshToken,name)
VALUES(?, ?, ?, ?);
import androidx.compose.animation.AnimatedVisibility
import androidx.compose.animation.core.tween
import androidx.compose.animation.fadeIn
import androidx.compose.animation.fadeOut
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.text.ClickableText
import androidx.compose.foundation.text.KeyboardOptions
import androidx.compose.material.Button
import androidx.compose.material.OutlinedTextField
import androidx.compose.material.Text