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