//MetaPhrase/com.github.diegoberaldin.metaphrase.feature.projectsdialog.statistics.presentation/StatisticsItem
StatisticsItem
interface StatisticsItem
Statistics row item.
Inheritors
Divider |
Header |
LanguageHeader |
TextRow |
BarChartRow |
Types
Name | Summary |
---|---|
BarChartRow | [jvm] data class BarChartRow(val title: String = "", val value: Float = 0.0f) : StatisticsItem Row with a title and a value represented as a bar chart. |
Divider | [jvm] object Divider : StatisticsItem Divider between rows |
Header | [jvm] data class Header(val title: String = "") : StatisticsItem Section header. |
LanguageHeader | [jvm] data class LanguageHeader(val name: String = "") : StatisticsItem Language header. |
TextRow | [jvm] data class TextRow(val title: String = "", val value: String = "") : StatisticsItem Row with a title and a value represented as a string. |