How to make a widget of Gear S
You can make a widget of Gear S using dynamic box. then your widget will be visible in widget list of Gear S and can add it to home.
//config.xml
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:tizen="http://tizen.org/ns/widgets" id="http://yourdomain/DynamicBoxTest" version="1.0.0" viewmodes="maximized">
<tizen:application id="hzaYKYzDuO.DynamicBoxTest" package="hzaYKYzDuO" required_version="1.0"/>
<content src="index.html"/>
<feature name="http://tizen.org/feature/screen.size.normal.320.320"/>
<icon src="icon.png"/>
<name>DynamicBoxTest</name>
<tizen:privilege name="http://tizen.org/privilege/application.launch"/>
<tizen:setting hwkey-event="enable"/>
<tizen:app-widget id="hzaYKYzDuO.DynamicBoxTest.testDynamicBox" primary="true" auto-launch="false" update-period="1800.0">
<tizen:box-label xml:lang="en-gb">myDynBox</tizen:box-label>
<tizen:box-icon src="icon.png"/>
<tizen:box-content src="dynamicbox/index.html" mouse-event="true" touch-effect="true">
<tizen:box-size preview="icon.png" use-decoration="true">1x1</tizen:box-size>
</tizen:box-content>
</tizen:app-widget>
</widget>
/dynamicbox/index.html
<body bgcolor="#99CCFF" text="#FFFFFF">
<div id="demo">Web Dynamic Box</div>
<div id="demo">This is a Box.</div>
<div id="fromPd"></div>
</body>