Square = the new round
You just never stop to amaze me. When do you find the time to do it all?
Amazing.
Too kind, sir! Early mornings—late nights
The green on top of the image was bugging me…bit hard to see against the colorful pic. So I included a second white progress bar opposite the green one. To make it seem like the progress bar is on top of the card and not the image. Here’s the new URL with a screenshot:
https://res.cloudinary.com/***/image/fetch/c_fill,w_900,h_600/l_square/fl_layer_apply,e_colorize,co_rgb:73c238,w_PERCENT,h_0.05,g_south_west,c_scale/l_square/fl_layer_apply,w_REMAIN,h_0.05,g_south_east,c_scale/PIC
Differences:
- Using a 3:2 ratio so
w_900, h_600
- after the first
l_square/fl_layer_apply
I have a second that places a white progress bar opposite the green one
– Placement:g_south_east
– Width:w_REMAIN
whereREMAIN
is1.00-PERCENT
- Haven’t tested this with dark theme. My guess is that the white bar would stand out like a sore thumb…
Beautiful
That’s amazing, Bob! Thanks also for sharing!
My pleasure! It’s my hope that one day Glide will build in a progress bar into the card/tile view itself, but this will do for now. Anything eCourses/lessons that have completion requirements would benefit from this feature for sure.
WOW! Amazing. Hadn’t even considered this as a possibility, but this would be a GREAT feature for Glide to build into the card/tile view!
Yeah, I’ve been proposing it for a couple months now.
More great stuff! Thanks for everything Bob!
I was touching this again today so here’s an alternative using l_fetch for anyone who needs it:
https://res.cloudinary.com/***/image/fetch/c_fill,w_901,h_600/l_fetch:aHR0cHM6Ly9kdW1teWltYWdlLmNvbS82MDB4NDAwLzAwNjQwMC8wMDY0MDA=,w_PERCENT,h_0.05,g_south_west,c_scale,fl_relative/l_fetch:aHR0cHM6Ly9kdW1teWltYWdlLmNvbS82MDB4NDAwL2ZmZmZmZi9mZmZmZmY=,w_REMAIN,h_0.05,g_south_east,c_scale,fl_relative/PIC
Variables:
***
: Account name
PERCENT: Current progress %
REMAIN: Remaining progress %
PIC: The link to the pic
Is there a way to make it without image?
On which layout do you want to show it?
The use case is that I want to show the progress of some achievements and its progresses (ordered by % of completion) for now I have the list and the calculus of each % and of course I can order them by that, but the progress bar component of Glide is in Details screen not for lists or inlinelists and I thought maybe to create tiles or cards with a progressbar in the image type from quickchart or cloudinary.
But I don’t have an image to display you know? I only want the progress bar.
Only way to place a progress bar in an inlin list is if it’s the image (or avatar in tile/card view).
Might be able to do something with CSS to make it appear differently.
Here’s a quick example with quickcharts:
That works for me! How can I achieve this progress bar?