Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
You just killed it. It's awesome and you are made for it
We want more videos like this. Please continue the series
Can you give me the code because I am not in the mood to write❤️
You should increase frame per second for give better transition.
Thank you for this wonderful video, but do you have also for signup? Which will be connected to this login gui.
thank for this wonderful tutorial, I'm looking forward to new ones...
Hi
I have done everything but it's showing error invalid data after declaration
Did you install the package for "animation"? Thank you.
No. Only the imported packages are installed.
Bro source code of these project plsss
yess
4:41
anyone ever work out how to fix the text input on Kivy? The fact that it doesn't allow native keyboard suggestions is why I stopped using Kivy at all
Hey Bro,How you deploy your kivy and kivyMD app??
Eric Sandberg has a good tutorial on this
TypeError: 'NoneType' object is not subscriptablecode : from kivy.uix.screenmanager import ScreenManagerfrom kivymd.app import MDAppfrom kivy.lang import Builderfrom kivy.core.window import Window Window.size = (305,480)KV = """MDScreen: name : "LoginPage" on_enter: app.anim(back) app.anim1(back) MDFLoatLayout: MDFloatLayout: id: back size_hint_y: .6 pos_hint: {"center_y":1.8} radius : [0,0,0,40] canvas: Color: rgb: (1,0,0,1) Rectangle: size: self.size pos: self.pos MDFloatLayout: id: back1 size_hint_y: .6 pos_hint: {"center_y":1.8} radius : [0,0,0,40] canvas: Color: rgb: (1,0,0,1) Ellipse: size: self.size pos: self.pos"""class LoginApp(MDApp): def change_screen(self,name): screen_manager.current = name def build(self): global _screen_manager screen_manager = ScreenManager() screen_manager.add_widget(Builder.load_string(KV)) return screen_manager def anim(self, widget): anim = Animation(pos_hint={"center_y": 1.16}) anim.start(widget) def anim1(self, widget): anim = Animation(pos_hint={"center_y": .85}) anim.start(widget)if __name__ == '__main__': app = LoginApp() app.run()
You just killed it. It's awesome and you are made for it
We want more videos like this. Please continue the series
Can you give me the code because I am not in the mood to write❤️
You should increase frame per second for give better transition.
Thank you for this wonderful video, but do you have also for signup? Which will be connected to this login gui.
thank for this wonderful tutorial, I'm looking forward to new ones...
Hi
I have done everything but it's showing error invalid data after declaration
Did you install the package for "animation"? Thank you.
No. Only the imported packages are installed.
Bro source code of these project plsss
yess
4:41
anyone ever work out how to fix the text input on Kivy? The fact that it doesn't allow native keyboard suggestions is why I stopped using Kivy at all
Hey Bro,
How you deploy your kivy and kivyMD app??
Eric Sandberg has a good tutorial on this
TypeError: 'NoneType' object is not subscriptable
code :
from kivy.uix.screenmanager import ScreenManager
from kivymd.app import MDApp
from kivy.lang import Builder
from kivy.core.window import Window
Window.size = (305,480)
KV = """
MDScreen:
name : "LoginPage"
on_enter:
app.anim(back)
app.anim1(back)
MDFLoatLayout:
MDFloatLayout:
id: back
size_hint_y: .6
pos_hint: {"center_y":1.8}
radius : [0,0,0,40]
canvas:
Color:
rgb: (1,0,0,1)
Rectangle:
size: self.size
pos: self.pos
MDFloatLayout:
id: back1
size_hint_y: .6
pos_hint: {"center_y":1.8}
radius : [0,0,0,40]
canvas:
Color:
rgb: (1,0,0,1)
Ellipse:
size: self.size
pos: self.pos
"""
class LoginApp(MDApp):
def change_screen(self,name):
screen_manager.current = name
def build(self):
global _screen_manager
screen_manager = ScreenManager()
screen_manager.add_widget(Builder.load_string(KV))
return screen_manager
def anim(self, widget):
anim = Animation(pos_hint={"center_y": 1.16})
anim.start(widget)
def anim1(self, widget):
anim = Animation(pos_hint={"center_y": .85})
anim.start(widget)
if __name__ == '__main__':
app = LoginApp()
app.run()