02-18-2018 12:11
02-18-2018 12:11
I've had numerous looks at the Settings Guide on Fitbit.com and still whenever I go to open the settings for my Ionic app on my phone, it says settings are unavailable. What's going on? If you need my entire code files, it's over on Github. https://github.com/slym88/MHS-Time-for-Fitbit-Ionic
Here's my code so far:
function mySettings(props) {
return (
<Page>
<Section
title={<Text bold align="center">Seperator Bar Color</Text>}>
<Toggle
settingsKey="seperatorToggle"
label="Seperator based on Day Prgress On/Off"
/>
<ColorSelect
settingsKey="color"
colors={[
{color: 'firebrick'},
{color: 'darkorange'},
{color: 'gold'},
{color: 'deepskyblue'},
{color: 'olivedrab'},
{color: 'deeppink'},
{color: 'purple'}
]}
/>
</Section>
<Select
label={`Type of Day`}
settingsKey="schedule"
options={[
{name:"Regular"},
{name:"No School"},
{name:"2 Hour Delay"},
{name:"PM Activity"},
{name:"Assembly"},
{name:"7 Period"},
{name:"Exam"},
]}
/>
</Page>
);
}
registerSettingsPage(mySettings);
Best Answer02-19-2018 08:20
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
02-19-2018 08:20
It might be because your "Type of Day" select is not within a <section>.
Best Answer