I am using HTML5 input date and input time for ionic development. By default, it binds as ISO Date String and change to UTC date time. It seems wrong to me as when user choose the date 2016-06-06, it may have become 2016-06-07 or 2016-06-05 depending on timezone offset. Similar situation for input type = time.
What my intention is to make the Date in ISO String to remain of what user chosen instead of offset it with timezone difference.
Something like input datetime-local but seems that datetime-local is not supported by mobile device.
I am finding something like input type="date-local" or "time-local".