Skip to content

Instantly share code, notes, and snippets.

@eaccmk
Last active September 12, 2021 10:20
Show Gist options
  • Save eaccmk/7a57902e4ce4078b2b20e352ff3964d9 to your computer and use it in GitHub Desktop.
Save eaccmk/7a57902e4ce4078b2b20e352ff3964d9 to your computer and use it in GitHub Desktop.
Fitbit app companion (mobile) setting to demo how to format text bold, italic, aligned center etc..
// author : https://github.com/eaccmk
// created : sep-2021
function mySettings(props) {
return (
<Page>
<Text align="right">This text will align to the right side</Text>
<Text align="left">This text will align to the left side</Text>
<Text align="center"> Text at center </Text>
<Text bold>Bold Text.</Text>
<Text italic>Italicized Text</Text>
<Text bold align="center">
bold and at center
</Text>
</Page>
);
}
registerSettingsPage(mySettings);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment