mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-01 15:35:55 -08:00
14 lines
265 B
Python
14 lines
265 B
Python
from kivy.properties import DictProperty
|
|
|
|
from kivymd.uix.boxlayout import MDBoxLayout
|
|
|
|
|
|
class RankingsBar(MDBoxLayout):
|
|
rankings = DictProperty(
|
|
{
|
|
"Popularity": 0,
|
|
"Favourites": 0,
|
|
"AverageScore": 0,
|
|
}
|
|
)
|