This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react' | |
import { SafeAreaView, ScrollView, StatusBar, StyleSheet, Text, View } from 'react-native' | |
import { Colors } from 'react-native/Libraries/NewAppScreen' | |
import AppleHealthKit, { HealthKitPermissions, HealthValue } from 'react-native-health' | |
/* Permission options */ | |
const permissions = { | |
permissions: { | |
read: [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const toRemove = [ | |
'If You Need The Most Awesome Violin Music, Hear This •', | |
'Traitor', | |
'Revolution', | |
'Sacrifice', | |
'Endgame', | |
'Overlord', | |
'Darkness', | |
'A Soundtrack for the Apocalypse' | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const print = (text, level = 'warn') => console[level](`HELPER: ${text}`) | |
const NOT_LABELED = 'Not Labeled'; | |
const LIST_NAME = 'Live'; | |
const SELECTORS = { | |
list: { | |
wrapper: 'list-wrapper', | |
header: 'list-header-name-assist' | |
}, |
OlderNewer