mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-26 04:41:34 -08:00
14 lines
349 B
Python
14 lines
349 B
Python
from kivy.properties import StringProperty, ListProperty
|
|
from kivymd.uix.boxlayout import MDBoxLayout
|
|
|
|
|
|
class TaskCard(MDBoxLayout):
|
|
file = ListProperty(("", ""))
|
|
eta = StringProperty()
|
|
|
|
def __init__(self, file: str, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.file = file
|
|
# self.eta = eta
|
|
#
|