- Start the exec server
tsx exec-server.ts &
- Run Maestro test
| import android.graphics.Matrix | |
| import android.os.Bundle | |
| import androidx.activity.ComponentActivity | |
| import androidx.activity.compose.setContent | |
| import androidx.compose.animation.core.LinearEasing | |
| import androidx.compose.animation.core.RepeatMode | |
| import androidx.compose.animation.core.animateFloat | |
| import androidx.compose.animation.core.infiniteRepeatable | |
| import androidx.compose.animation.core.rememberInfiniteTransition | |
| import androidx.compose.animation.core.tween |
Run this command at the root of your project
grep -rwl . -e 'kotlinx.android.synthetic'| #!/usr/bin/env python3 | |
| from collections import namedtuple | |
| import os | |
| import shutil | |
| import re | |
| import json | |
| import argparse | |
| import sys |
| import * as SystemUI from 'expo-system-ui'; | |
| import * as React from 'react'; | |
| import { Appearance, AppState, AppStateStatus, ColorSchemeName, ColorValue } from 'react-native'; | |
| type ThemedColorValue = { light: ColorValue, dark: ColorValue }; | |
| type Props = { backgroundColor: ColorValue | ThemedColorValue } | |
| const propsStack: Props[] = []; |
| package cu.spin.catalog.ui.components | |
| import android.annotation.SuppressLint | |
| import androidx.compose.animation.core.animateFloat | |
| import androidx.compose.animation.core.updateTransition | |
| import androidx.compose.runtime.State | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.composed | |
| import androidx.compose.ui.draw.drawWithCache | |
| import androidx.compose.ui.geometry.Offset |
| enum class States { | |
| EXPANDED, | |
| COLLAPSED | |
| } | |
| @ExperimentalMaterialApi | |
| @Composable | |
| fun FullHeightBottomSheet( | |
| header: @Composable () -> Unit, | |
| body: @Composable () -> Unit |
| import androidx.compose.ui.graphics.Color | |
| // Material Color Resources | |
| val amber_050 = Color(0xFFfff8e1) // Use with black text | |
| val amber_100 = Color(0xFFffecb3) // Use with black text | |
| val amber_200 = Color(0xFFffe082) // Use with black text | |
| val amber_300 = Color(0xFFffd54f) // Use with black text | |
| val amber_400 = Color(0xFFffca28) // Use with black text | |
| val amber_500 = Color(0xFFffc107) // Use with black text |
| import androidx.compose.material.LocalTextStyle | |
| import androidx.compose.material.Text | |
| import androidx.compose.runtime.* | |
| import androidx.compose.ui.Modifier | |
| import androidx.compose.ui.draw.drawWithContent | |
| import androidx.compose.ui.graphics.Color | |
| import androidx.compose.ui.text.AnnotatedString | |
| import androidx.compose.ui.text.TextStyle | |
| import androidx.compose.ui.text.font.FontFamily | |
| import androidx.compose.ui.text.font.FontStyle |
| import android.graphics.Bitmap | |
| import android.graphics.Color | |
| import androidx.annotation.ColorInt | |
| import com.curiouscreature.kotlin.math.Float3 | |
| import com.curiouscreature.kotlin.math.Mat3 | |
| import com.curiouscreature.kotlin.math.saturate | |
| import com.curiouscreature.kotlin.math.transpose | |
| import kotlin.math.pow | |