I hereby claim:
- I am B3rry on github.
- I am b3rry (https://keybase.io/b3rry) on keybase.
- I have a public key whose fingerprint is 5CD2 FB08 4318 7A6C 2927 50DA 6FEE E295 4935 3723
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
A user of our medical survey application needs to review, understand, and accept (actively agree to) each of the individual consent criterion needed to use the web app. Consent criterion may be things such as "We will email you" or "we will save your health data in a secure server." The intent is achieve two goals:
Permissions have been divided into categories (such as "Methods of Contact" or "Medical Data Collected"). Each category will get its own view, with all the criteria for this category displayed at once. The user will review and agree to each of the individual criterion within a category provided the following components:
import React from 'react'; | |
import { StyleSheet, Text, View, TouchableOpacity } from 'react-native'; | |
export default class App extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = {totalCount: 0}; | |
} |