mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-26 12:51:15 -08:00
9 lines
259 B
Python
9 lines
259 B
Python
from kivy.properties import NumericProperty, ObjectProperty
|
|
from kivymd.uix.boxlayout import MDBoxLayout
|
|
|
|
|
|
class SearchResultsPagination(MDBoxLayout):
|
|
current_page = NumericProperty()
|
|
total_pages = NumericProperty()
|
|
search_view = ObjectProperty()
|