What is the procedure to Check whether the Auto Date time is enabled or not using SystemSettings For IOS
bool isAutoDatetimeEnabled = false;
bool timeAuto = await DatetimeSetting.timeIsAuto();
bool timezoneAuto = await DatetimeSetting.timeZoneIsAuto();
timezoneAuto && timeAuto
? isAutoDatetimeEnabled = true
: isAutoDatetimeEnabled = false; this code works fine in android but for IOS i need to find other way
What is the procedure to Check whether the Auto Date time is enabled or not using SystemSettings For IOS
bool isAutoDatetimeEnabled = false;
bool timeAuto = await DatetimeSetting.timeIsAuto();
bool timezoneAuto = await DatetimeSetting.timeZoneIsAuto();
timezoneAuto && timeAuto
? isAutoDatetimeEnabled = true
: isAutoDatetimeEnabled = false; this code works fine in android but for IOS i need to find other way