/** * Sample React Native App * https://github.com/facebook/react-native * * @format * @flow strict-local */ import React from 'react'; import type {ReactNode} from 'react'; import { SafeAreaView, StatusBar, StyleSheet, useColorScheme, View, } from 'react-native'; import { Button, ThemeProvider, Typography, Icon, IconButton, Input, Select, SelectItem, } from './src'; import {defaultTheme, createTheme} from './src/Theme'; const App: () => ReactNode = () => { const isDarkMode = useColorScheme() === 'dark'; let theme2 = createTheme(defaultTheme, { typography: { body1: { fontFamily: 'Poppins', fontWeight: '600', }, }, }); const icon = ; const options = ['Recent', 'Popular', 'Hot']; return ( Header1 Header2 Header3 body1 body2 } /> ); }; const styles = StyleSheet.create({ view: { /* display: 'flex', flexDirection: 'column', alignItems: 'flex-start',*/ width: '100%', }, sectionContainer: { marginTop: 32, paddingHorizontal: 24, }, sectionTitle: { fontSize: 24, fontWeight: '600', }, sectionDescription: { marginTop: 8, fontSize: 18, fontWeight: '400', }, highlight: { fontWeight: '700', }, }); export default App;