Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uix/transition: add MDSharedAxisTransition #1673

Merged
merged 1 commit into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
221 changes: 221 additions & 0 deletions examples/md_axis_transition.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
from kivy.lang import Builder
import os
import kivymd
from kivymd.app import MDApp
from kivy.uix.screenmanager import ScreenManager
from kivymd.uix.screen import MDScreen
from kivymd.uix.transition import MDSharedAxisTransition
from examples.common_app import CommonApp

KV = """
<Check@MDCheckbox>:
group: 'group'
size_hint: None, 1
width:self.height
<SettingsItem@ButtonBehavior+BoxLayout>:
icon:"wifi"
text:"Network & Internet"
subtext:"Network settings"
size_hint_y:None
height:dp(70)
padding:dp(10)
spacing:dp(10)
on_release:
app.root.get_screen("battery").ids.main_icon.icon = self.icon
app.root.get_screen("battery").ids.main_text.text = self.text
app.root.transition.opposite = False
app.root.current = "battery"
MDIconButton:
style: "tonal"
size_hint:None, 1
width:self.height
icon:root.icon
BoxLayout:
orientation:"vertical"
MDLabel:
text:root.text
font_style:"Title"
role:"medium"
MDLabel:
text:root.subtext
font_style:"Label"
role:"large"
theme_text_color:"Custom"
text_color:app.theme_cls.surfaceContainerLowestColor[:-1] + [0.5]
<SettingsScreen@MDScreen>:
name:"main"
md_bg_color:app.theme_cls.surfaceContainerLowColor
MDBoxLayout:
padding:[dp(10), 0]
orientation:"vertical"
BoxLayout:
size_hint_y:None
height:dp(70)
padding:[0, dp(10)]
MDIconButton:
size_hint:None, None
size:[dp(50)] * 2
on_release: app.open_menu(self)
icon: "menu"
Widget:
MDIconButton:
size_hint:None, None
size:[dp(50)] * 2
on_release: app.open_menu(self)
icon: "magnify"
MDIconButton:
size_hint:None, None
size:[dp(50)] * 2
on_release: app.open_menu(self)
icon: "dots-vertical"
MDLabel:
text:"Settings"
halign:"center"
theme_font_size:"Custom"
font_size:"30sp"
style:"bold"
size_hint_y:None
height:dp(70)
MDBoxLayout:
md_bg_color:app.theme_cls.surfaceContainerHighColor
padding:[dp(10), 0]
radius:[self.height / 2]*4
size_hint_y:None
height:dp(60)
padding:[dp(10), dp(10)]
spacing:dp(10)
MDIconButton:
size_hint_y:1
icon:"magnify"
size_hint_x:None
width:self.height
MDLabel:
text:"Search in settings"
font_style:"Body"
role:"large"
theme_text_color:"Custom"
text_color:app.theme_cls.surfaceContainerLowestColor[:-1] + [0.5]
Image:
size_hint_y:1
source:app.image_path
size_hint_x:None
width:self.height
BoxLayout:
size_hint_y:None
height:dp(20)
MDBoxLayout:
md_bg_color:app.theme_cls.surfaceContainerHighColor
radius:[dp(25)] * 4
size_hint_y:None
height:self.minimum_height
orientation:"vertical"
SettingsItem:
icon:"wifi"
SettingsItem:
icon:"battery-90"
text:"Battery & Power"
subtext:"42% - About 14hr left"
SettingsItem:
icon:"palette-outline"
text:"Wallpaper & Style"
subtext:"Colors, theme style"
SettingsItem:
icon:"android"
text:"System Info"
subtext:"About system"
BoxLayout:
size_hint_y:None
height:dp(70)
padding:[(self.width - dp(50)*6), dp(25)]
spacing:dp(10)
Check:
active:True
on_active:
setattr(app.transition, "transition_axis", "x") if self.active else app
MDLabel:
size_hint_x:None
width:dp(50)
text:"X"
Check:
on_active:
setattr(app.transition, "transition_axis", "y") if self.active else app
MDLabel:
size_hint_x:None
width:dp(50)
text:"Y"
Check:
on_active:
setattr(app.transition, "transition_axis", "z") if self.active else app
MDLabel:
size_hint_x:None
width:dp(50)
text:"Z"
BoxLayout:
size_hint_y:None
height:dp(100)
orientation:"vertical"
MDLabel:
id:duration
text:"Duration: 0.2"
adaptive_height:True
halign:"center"
MDSlider:
size_hint_y:None
height:dp(50)
step: 10
value: 10
on_value:
duration.text = "Duration: " + str(self.value / 50)
app.transition.duration = self.value/50
MDSliderHandle:
Widget:
<BatteryScreen@MDScreen>:
name:"battery"
md_bg_color:app.theme_cls.surfaceContainerLowColor
MDLabel:
id:main_text
text:"Battery"
halign:"center"
theme_font_size:"Custom"
font_size:"30sp"
style:"bold"
size_hint_y:None
height:dp(100)
pos_hint:{"center_y":0.8}
MDIconButton:
id:main_icon
icon:"wifi"
style:"tonal"
pos_hint:{"center_y":0.7, "center_x":0.5}
MDButton:
pos_hint:{"center_x":0.5, "center_y":0.5}
style: "filled"
on_release:
app.root.transition.opposite = True
app.root.current = "main"
MDButtonText:
text: "Go Back"
MDScreenManager:
id:s_m
md_bg_color:app.theme_cls.surfaceContainerLowColor
transition:app.transition
SettingsScreen:
BatteryScreen:
"""


class ExampleApp(MDApp, CommonApp):
image_path = os.path.join(
kivymd.__path__[0], "images", "logo", "kivymd-icon-256.png"
)

def build(self):
self.transition = MDSharedAxisTransition()
return Builder.load_string(KV)


ExampleApp().run()
1 change: 1 addition & 0 deletions kivymd/uix/transition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
MDFadeSlideTransition,
MDSlideTransition,
MDSwapTransition,
MDSharedAxisTransition,
)
Loading
Loading