diff --git a/app/src/examples/MatrixTransform.tsx b/app/src/examples/MatrixTransform.tsx index 6c49fd9f06c2..441dc008ceb7 100644 --- a/app/src/examples/MatrixTransform.tsx +++ b/app/src/examples/MatrixTransform.tsx @@ -3,9 +3,19 @@ import Animated, { useAnimatedStyle, withSpring, } from 'react-native-reanimated'; -import { SafeAreaView, Button, View, StyleSheet, Platform } from 'react-native'; +import { + SafeAreaView, + View, + StyleSheet, + Platform, + Text, + TouchableOpacity, +} from 'react-native'; import React, { useRef } from 'react'; +const NAVY = '#001A72'; +const LIGHT_NAVY = '#C1C6E5'; + const TRANSFORM_MATRICES = [ [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2], [0.5, 1, 0, 0, -1, 0.5, 0, 0, 0, 0, 1, 0, 100, 100, 100, 1], @@ -46,21 +56,38 @@ export default function MatrixTransform() { }, [matrix, matrix2, currentTransformIndex]); return ( - -