Finished month row of stats
This commit is contained in:
parent
ae2264c706
commit
60d09ee192
1 changed files with 11 additions and 3 deletions
|
@ -96,11 +96,19 @@ class _PracticeSetupState extends State<PracticeSetupPage> {
|
|||
),
|
||||
Text(
|
||||
snapshot.hasData ?
|
||||
snapshot.data["All month"].round().toString() + "%" : "-",
|
||||
snapshot.data["7d month"].toString() + "%" : "-",
|
||||
textAlign: TextAlign.center, style: TextStyle(fontSize: 25)
|
||||
),
|
||||
Text(
|
||||
snapshot.hasData ?
|
||||
snapshot.data["30d month"].toString() + "%" : "-",
|
||||
textAlign: TextAlign.center, style: TextStyle(fontSize: 25)
|
||||
),
|
||||
Text(
|
||||
snapshot.hasData ?
|
||||
snapshot.data["All month"].toString() + "%" : "-",
|
||||
textAlign: TextAlign.center, style: TextStyle(fontSize: 25)
|
||||
),
|
||||
Text("70%", textAlign: TextAlign.center, style: TextStyle(fontSize: 25)),
|
||||
Text("50%", textAlign: TextAlign.center, style: TextStyle(fontSize: 25))
|
||||
]
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue