Answer the question
In order to leave comments, you need to log in
How to make a timer with dynamic time on Xamarin cross platform?
Made a timer
TimeSpan interval= new TimeSpan(0, 0, 0, 0, 700);
Device.StartTimer(interval, () =>
{
interval=TimeSpan.FromMilliseconds(interval.Milliseconds - 10);
}
Answer the question
In order to leave comments, you need to log in
Probably, it is necessary not to write complete nonsense.
Interval is a local copy on the stack, not what you need.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question