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