Any one able to give me advice on how to make a progress bar that doesn’t “know” when it’s going to finish? I know I can use a looping animation until it’s done but would prefer a loading bar.
Thread
You could make one that transitions smoothly from 0% -> 50% -> 66% -> 75% -> 80% -> ... . The ratios are 0/1, 1/2, 2/3, 3/4, 4/5 and so on, until your task is complete and it can go to 100%. That way it doesn't just pause at 99% like most do, and it feels continuous