Screen mirroring
# Mirror the screen
scrcpy
# View only
scrcpy --no-control| package com.emenjivar.demohandlingerrorfields.inputs | |
| import kotlinx.coroutines.flow.MutableStateFlow | |
| import kotlinx.coroutines.flow.StateFlow | |
| import kotlinx.coroutines.flow.update | |
| sealed class InputField<T>( | |
| initialValue: T | |
| ) { | |
| abstract val name: String |
| package com.emenjivar.testanimatedcurves | |
| import android.os.Bundle | |
| import androidx.activity.ComponentActivity | |
| import androidx.activity.compose.setContent | |
| import androidx.activity.enableEdgeToEdge | |
| import androidx.compose.animation.core.EaseInOutBack | |
| import androidx.compose.animation.core.animateFloatAsState | |
| import androidx.compose.animation.core.tween | |
| import androidx.compose.foundation.background |
| /** | |
| * Display an animated typing indicator with a configurable number of dots. | |
| * | |
| * @param modifier The modifier to be applied to the component. | |
| * @param configuration The configuration for the component's appearance. | |
| * @param totalDots The total number of dots displayed in the indicator. | |
| */ | |
| @Composable | |
| fun AnimatedTypingIndicator( | |
| modifier: Modifier = Modifier, |
| <?php | |
| require_once __DIR__.'/routeHTTP.php'; | |
| $route = new RouteHTTP(); | |
| $route->addRoute('GET', '/user', function() { | |
| $page = isset($_GET['page']) ? $_GET['page'] : 1; | |
| //llamada a funcion de service | |
| }); |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <assert.h> | |
| //definicion de estructuras | |
| typedef struct nodo { | |
| int valor; | |
| struct nodo *siguiente; | |
| //struct nodo *anterior; |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #define TRUE 1 | |
| #define FALSE 0 | |
| //definicion de estructuras | |
| typedef struct nodo { | |
| int valor; | |
| struct nodo *siguiente; |