diff --git a/examples/text-classification/TextClassificationDemo.v0.tsx b/examples/text-classification/TextClassificationDemo.v0.tsx new file mode 100644 index 000000000..f3cc7e04c --- /dev/null +++ b/examples/text-classification/TextClassificationDemo.v0.tsx @@ -0,0 +1,24 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @format + */ + +import * as React from 'react'; +import { Button, Text, TextInput, View } from 'react-native'; +import { useSafeAreaInsets } from 'react-native-safe-area-context'; + +export default function TextClassificationDemo() { + // Get safe area insets to account for notches, etc. + const insets = useSafeAreaInsets(); + return ( + + +