Last active
September 12, 2021 10:20
-
-
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..
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
// 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