conyappa / mobile

The hybrid–native mobile application of Con Yappa.
0 stars 0 forks source link

Display disclaimers about shared prizes #84

Closed ariel-m-s closed 3 years ago

ariel-m-s commented 3 years ago

Description

Add disclaimers about shared prizes in both the tickets and prizes screens.

backend#52 introduces a new object for prizes with the following JSON schema:

{
  "type": "object",
  "properties": {
    "value": {
      "type": "integer",
      "minimum": 0,
      "example": 100
    },
    "is_shared": {
      "type": "boolean",
      "description": "whether the prize is to be shared between all winning tickets",
      "example": false
    }
  }
}

This is how Yotta Savings shows the dislclaimer in the prizes screen. I think it’s best if we show the same kind of thing in the tickets screen where the total prize is displayed (and maybe in each ticket that has a shared prize).

Why it’s relevant

The shared prizes feature enables us to raise the higher prizes, which is a good marketing strategy. This must be communicated to the end user so they better understand how the app works.