ContactUsPage.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import { SafeAreaView, StyleSheet, Text, View, ScrollView } from 'react-native'
  2. import React from 'react'
  3. import NewscoutTitleHeader from '../components/organisms/Headers/NewscoutTitleHeader'
  4. import FormTextInput from '../components/molecules/FormTextInput';
  5. import { capitalize } from '../utils/Constants/functions';
  6. import ThemedTextButton from '../components/organisms/Buttons/ThemedTextButton';
  7. const ContactUsPage = ({navigation}) => {
  8. const [contactDetails, setContactDetails] = React.useState({
  9. fullname: '',
  10. email: '',
  11. message: ''
  12. });
  13. return (
  14. <SafeAreaView>
  15. <NewscoutTitleHeader title={"Contact Us"} backButtonShown onBackClick={() => navigation.goBack()} />
  16. <ScrollView showsVerticalScrollIndicator>
  17. <SafeAreaView style={{ padding: 16, gap: 8 }}>
  18. {Object.keys(contactDetails).map(key => <FormTextInput
  19. title={capitalize(key)}
  20. multiline
  21. placeholder={capitalize(key)}
  22. value={contactDetails[key]}
  23. onChange={text =>
  24. setProfileData(prev => ({ ...prev, [key]: text }))
  25. }
  26. />)}
  27. <ThemedTextButton
  28. title={'Contact Us'}
  29. onPress={true}
  30. theme={'secondary-contained'}
  31. buttonStyle={{
  32. marginVertical: 16,
  33. width: 'auto'
  34. }} />
  35. </SafeAreaView>
  36. </ScrollView>
  37. </SafeAreaView>
  38. )
  39. }
  40. export default ContactUsPage
  41. const styles = StyleSheet.create({})