| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 | 
							- // @flow
 - 
 - import React from 'react';
 - import { Switch, Text, View } from 'react-native';
 - import { Button } from 'react-native-paper';
 - 
 - import { BUTTON_MODES } from '../../../chat/constants';
 - import AbstractPollAnswer from '../AbstractPollAnswer';
 - import type { AbstractProps } from '../AbstractPollAnswer';
 - 
 - import { chatStyles, dialogStyles } from './styles';
 - 
 - 
 - const PollAnswer = (props: AbstractProps) => {
 - 
 -     const {
 -         checkBoxStates,
 -         poll,
 -         setCheckbox,
 -         skipAnswer,
 -         submitAnswer,
 -         t
 -     } = props;
 - 
 -     return (
 -         <View>
 -             <View>
 -                 <Text style = { dialogStyles.question } >{ poll.question }</Text>
 -             </View>
 -             <View style = { chatStyles.answerContent }>
 -                 {poll.answers.map((answer, index) => (
 -                     <View
 -                         key = { index }
 -                         style = { chatStyles.switchRow } >
 -                         <Switch
 -                             /* eslint-disable react/jsx-no-bind */
 -                             onValueChange = { state => setCheckbox(index, state) }
 -                             value = { checkBoxStates[index] } />
 -                         <Text>{answer.name}</Text>
 -                     </View>
 -                 ))}
 -             </View>
 -             <View style = { chatStyles.buttonRow }>
 -                 <Button
 -                     color = '#3D3D3D'
 -                     mode = { BUTTON_MODES.CONTAINED }
 -                     onPress = { skipAnswer }
 -                     style = { chatStyles.pollCreateButton } >
 -                     {t('polls.answer.skip')}
 -                 </Button>
 -                 <Button
 -                     color = '#17a0db'
 -                     mode = { BUTTON_MODES.CONTAINED }
 -                     onPress = { submitAnswer }
 -                     style = { chatStyles.pollCreateButton } >
 -                     {t('polls.answer.submit')}
 -                 </Button>
 -             </View>
 -         </View>
 - 
 -     );
 - };
 - 
 - /*
 -  * We apply AbstractPollAnswer to fill in the AbstractProps common
 -  * to both the web and native implementations.
 -  */
 - // eslint-disable-next-line new-cap
 - export default AbstractPollAnswer(PollAnswer);
 
 
  |