mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-12 15:50:01 -08:00
9 lines
262 B
Python
9 lines
262 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()
|
|
|