diff --git a/TestsExample/src/SampleTest.tsx b/TestsExample/src/SampleTest.tsx
index 52fea894..745187ad 100644
--- a/TestsExample/src/SampleTest.tsx
+++ b/TestsExample/src/SampleTest.tsx
@@ -1,30 +1,49 @@
import React from 'react';
+import { PlatformColor, Platform, Button } from 'react-native';
import {
Svg,
Circle,
Rect,
+ Text,
+ TSpan
} from 'react-native-svg';
+const color = PlatformColor(Platform.select({
+ ios: 'label',
+ android: '@android:color/primary_text_light',
+ default: 'black',
+}))
+
export default () => {
+ const [test, setTest] = React.useState(50);
+
return (
-
+ <>
+
+
+