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
| 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(?, ?, ?, ?); |
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 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 |