mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-11 10:25:59 +02:00
Add folder uploads, add settings description, add metrics increase/decrease percentage
This commit is contained in:
parent
274343a5cf
commit
27edb6730f
30 changed files with 1270 additions and 225 deletions
|
@ -154,3 +154,6 @@ export function getRippleColor(color: string, fraction = 0.4) {
|
|||
|
||||
return rgbaToHex(newRed, newGreen, newBlue);
|
||||
}
|
||||
export function getMetricsDifference(first: number, last: number): number {
|
||||
return Math.round(((first - last) / last) * 100) || 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue