مواد پر جائیں

Progress ویجٹ

کوئی کام کتنا آگے بڑھا ہے، بار کی صورت میں۔ رول آؤٹ، بیک اپ، کوٹہ اور ہر اُس کام کے لیے بہترین جس کا اختتام معلوم ہو۔

The progress template renders a fraction as a percentage and a bar. Send value as a fraction between 0 and 1 — not a percentage — and the widget does the arithmetic and the formatting.

Fields

FieldTypeNotes
templatestringRequired. Must be "progress"
valuefloatRequired (see the self-advancing note below for the one exception). A fraction in 0.0 – 1.0; 0.42 renders as 42%. Out-of-range values are rejected with 422
trendstringup / down / flat. Drawn as a badge under the bar on the large family, when no stat_rows are set
stat_rowsobject[]Supporting rows under the bar on the large family — the first 3 are drawn, in place of the trend badge. Each is { label (≤32), value (≤32), unit? (≤16) }; the wire cap is 6
label, subtitle, icon, accent_color, background_color, text_colorstringShared content fields — see the API reference

Example: incident acknowledgements

PATCH /widgets/oncall-pages
{
  "content": {
    "template": "progress",
    "value": 0.6,
    "label": "Pages",
    "subtitle": "6 of 10 acked · INC-2841",
    "icon": "checklist",
    "accent_color": "green",
    "stat_rows": [
      { "label": "Acked",    "value": "6" },
      { "label": "Total",    "value": "10" },
      { "label": "Severity", "value": "SEV-2" }
    ]
  }
}

Behavior

The percentage shown above the bar is derived from value, so the number and the fill can never disagree. There is no "indeterminate" state: a job whose progress you cannot measure is better modelled as a status widget than as a bar stuck at some arbitrary fraction.

Bars do not animate between pushes — each update paints the new fill immediately. For something that should keep moving on its own, use the date pair below, or reach for a Live Activity, which is the right surface for work that is happening right now and will end.

ایپ ورژن 1.6 میں آ رہا ہے

یہ سیکشن ایک ایپ اپڈیٹ کی اُس خصوصیت کو بیان کرتا ہے جو App Store کے جائزے کے لیے زیرِ التوا ہے۔ اپڈیٹ لائیو ہوتے ہی یہ یہاں خودکار طور پر اَن لاک ہو جائے گی۔

Drag the value and open a window on the playground to see both modes across the small, medium, large, and Lock Screen families.