feat:formbricks configurando formbricks

This commit is contained in:
Amadeu José Andrade Junior
2025-01-07 17:06:36 -03:00
parent af6a9795fd
commit 1eb50f621c
5 changed files with 66 additions and 62 deletions

62
App.tsx
View File

@@ -10,40 +10,10 @@ import {
View,
} from 'react-native';
import {
Colors,
import {Colors} from 'react-native/Libraries/NewAppScreen';
} from 'react-native/Libraries/NewAppScreen';
import ShowFormButton from './src/components/ShowFormButton';
type SectionProps = PropsWithChildren<{
title: string;
}>;
function Section({children, title}: SectionProps): React.JSX.Element {
const isDarkMode = useColorScheme() === 'dark';
return (
<View style={styles.sectionContainer}>
<Text
style={[
styles.sectionTitle,
{
color: isDarkMode ? Colors.white : Colors.black,
},
]}>
{title}
</Text>
<Text
style={[
styles.sectionDescription,
{
color: isDarkMode ? Colors.light : Colors.dark,
},
]}>
{children}
</Text>
</View>
);
}
function App(): React.JSX.Element {
const isDarkMode = useColorScheme() === 'dark';
@@ -53,40 +23,28 @@ function App(): React.JSX.Element {
};
return (
<SafeAreaView style={backgroundStyle}>
<SafeAreaView style={styles.appcontainer}>
<StatusBar
barStyle={isDarkMode ? 'light-content' : 'dark-content'}
backgroundColor={backgroundStyle.backgroundColor}
/>
<ScrollView
contentInsetAdjustmentBehavior="automatic"
style={backgroundStyle}>
<View
style={{
backgroundColor: isDarkMode ? Colors.black : Colors.white,
}}>
<ShowFormButton />
</View>
</ScrollView>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
sectionContainer: {
marginTop: 32,
paddingHorizontal: 24,
},
sectionTitle: {
fontSize: 24,
fontWeight: '600',
},
sectionDescription: {
marginTop: 8,
fontSize: 18,
fontWeight: '400',
},
highlight: {
fontWeight: '700',
appcontainer: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: 'blue',
},
});