How To Create An Animated Login Page Using KivyMD | KivyMD

Поделиться
HTML-код
  • Опубликовано: 26 янв 2025
  • НаукаНаука

Комментарии • 17

  • @americandevils9171
    @americandevils9171 3 года назад

    You just killed it. It's awesome and you are made for it

    • @americandevils9171
      @americandevils9171 3 года назад

      We want more videos like this. Please continue the series

  • @AbuKrem
    @AbuKrem 3 года назад +2

    Can you give me the code because I am not in the mood to write❤️

  • @haroonrehman9489
    @haroonrehman9489 Год назад

    You should increase frame per second for give better transition.

  • @lylevincentgilay2584
    @lylevincentgilay2584 4 года назад

    Thank you for this wonderful video, but do you have also for signup? Which will be connected to this login gui.

  • @tahep3906
    @tahep3906 4 года назад

    thank for this wonderful tutorial, I'm looking forward to new ones...

  • @YuvaniFabrics
    @YuvaniFabrics 4 года назад

    I have done everything but it's showing error invalid data after declaration

  • @lylevincentgilay2584
    @lylevincentgilay2584 4 года назад

    Did you install the package for "animation"? Thank you.

    • @SBDeveloper
      @SBDeveloper  4 года назад

      No. Only the imported packages are installed.

  • @dinesh2772
    @dinesh2772 3 года назад +5

    Bro source code of these project plsss

  • @scratchersdotcom9336
    @scratchersdotcom9336 3 года назад

    4:41

  • @notsobob
    @notsobob 4 года назад

    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

  • @prashantmohania2069
    @prashantmohania2069 4 года назад

    Hey Bro,
    How you deploy your kivy and kivyMD app??

    • @notsobob
      @notsobob 4 года назад

      Eric Sandberg has a good tutorial on this

  • @aqshaladzkia4056
    @aqshaladzkia4056 4 года назад

    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()