This file contains 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
{ | |
"data": | |
{ | |
"products": | |
[ | |
{ | |
"desc": "A fixed term investment for businesses at an agreed rate of interest.", | |
"name": "90 Day Business Term Deposit" | |
}, | |
{ |
This file contains 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 | |
//Advanced jsx in fitbit | |
const user = { | |
firstName: "Fitbit", | |
lastName: "Buddy", | |
}; |
This file contains 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> | |
<ImagePicker | |
title="Image Selector" | |
description="This feature gets image from phone to fitbit" | |
label="Click here to select an image" |
This file contains 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> | |
<AdditiveList | |
title="Items with Autocomplete feature" | |
settingsKey="autocomplete-list" | |
maxItems="3" |
This file contains 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> | |
<Select | |
label={`Click for Selection`} | |
settingsKey="selection" | |
options={[ |
This file contains 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> | |
<TextInput | |
title="Click me to type" | |
label="Type (one, two ...)" | |
placeholder="Type here" |
This file contains 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> | |
<Section> | |
<Text> | |
Sync frequence in minutes :{" "} | |
<Text bold>{props.settingsStorage.getItem("minutes")}</Text> |
This file contains 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> |
This file contains 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 | |
// ref Official : https://www.paypal.com/us/webapps/mpp/logo-center | |
//const PP_LOGO = 'https://www.paypalobjects.com/webstatic/mktg/logo/pp_cc_mark_74x46.jpg' | |
//you may also pick one from https://www.flaticon.com/free-icons/paypal | |
const PP_LOGO = "https://cdn-icons-png.flaticon.com/512/888/888871.png"; | |
//replace with your personalised link | |
const PAYPAL_ME_LINK = "https://www.paypal.com/au/webapps/mpp/paypal-me"; |
This file contains 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 | |
const NEW_EMOJI_URL = "http://bit.ly/emojiHelp"; | |
function mySettings(props) { | |
return ( | |
<Page> | |
<Section> | |
<Text align="center"> |
NewerOlder