How to create and animate an expandable Sidebar menu In Python | Pyside6 / PyQt6 (2023)

  Рет қаралды 37,855

Create Beautiful Things

Create Beautiful Things

6 ай бұрын

Today we build a simple GUI Sidebar Menu in Python. For the graphical user interface we use PySide6 or PyQt6 inside QtDesigner.
Accessories
www.mediafire.com/folder/0iou...

Пікірлер: 44
@davethinkingsystems
@davethinkingsystems 2 ай бұрын
This was really brilliant. So clear. Much appreciated.
@Yhwhaleks1602
@Yhwhaleks1602 5 күн бұрын
Great lesson. Thank you. I applied it to my project !
@doctormanfer
@doctormanfer 2 ай бұрын
Awesome!!!! Marvellous work!!!
@tonygreen4812
@tonygreen4812 2 ай бұрын
Fantastic work!
@Tetianaoutdoors
@Tetianaoutdoors 3 ай бұрын
Oh man. I was so upset at a project because it wouldn't import my resource files. I gave up on it then watched this video just for entertainment and then you formatted the .qrc file to an .rc file and made a lightbulb go on over my head. I needed to convert it to be readable. Lol. Thanks
@fredericroland8204
@fredericroland8204 6 ай бұрын
Nice! Thank you
@lolnewtonzlol
@lolnewtonzlol 3 ай бұрын
Fantastic video. Thank you!
@CreateBeautifulThings
@CreateBeautifulThings 2 ай бұрын
Glad you liked it!
@OaZJumper
@OaZJumper 5 ай бұрын
Really helpful video, thanks!
@CreateBeautifulThings
@CreateBeautifulThings 5 ай бұрын
You're welcome
@cletusikennachukwuemeka9418
@cletusikennachukwuemeka9418 5 ай бұрын
You have a new follower Sir
@younesdeveloper
@younesdeveloper 4 ай бұрын
awesome
@II-er7gj
@II-er7gj Ай бұрын
Bro, it's awesome!! Please do more tuts like this one and more python! I subscribed your channel! Thank you very much for your time to show such fantastic knowledge! I learned a lot something new for Me from you tutorials!
@sebastianmb88
@sebastianmb88 2 ай бұрын
thanks a lot from Colombia you are a master
@CreateBeautifulThings
@CreateBeautifulThings 2 ай бұрын
You are welcome!
@wewe-rg9yu
@wewe-rg9yu Ай бұрын
You are my hero
@oualidbennahia5336
@oualidbennahia5336 3 ай бұрын
great thanku so much
@CreateBeautifulThings
@CreateBeautifulThings 2 ай бұрын
Most welcome 😊
@Slbaz
@Slbaz 25 күн бұрын
Thanks!
@anti_shade3436
@anti_shade3436 Ай бұрын
You're blessed
@user-xn3kc7ig6f
@user-xn3kc7ig6f 3 ай бұрын
The Best tutorial
@CreateBeautifulThings
@CreateBeautifulThings 3 ай бұрын
Thank you for watching
@sennlich
@sennlich 4 ай бұрын
Top Top Top
@jotarojoestar1399
@jotarojoestar1399 12 күн бұрын
can the stacked widget not collapse when the icon with name is expanded? like it would just pop up above the stacked widget and turn it dark or something?
@neverdiewibu4108
@neverdiewibu4108 2 ай бұрын
how can i make the sidebar have animation when hide/show ?
@jaziyasj2109
@jaziyasj2109 2 ай бұрын
I tried the toggle functionality but upon clicking it shows no result
3 ай бұрын
When I put elements or widgets on a page, for example 'messages_page', they do not grow proportionally on the page when I maximize the window. They remain in their position on the window, although the entire program window becomes larger. How can I change this in the program code?
@CreateBeautifulThings
@CreateBeautifulThings 3 ай бұрын
There is a concept called "Size policies and stretches". It's only that I didn't mention that in this video. But in this concept you are able to make an object expandable both vertically and horizontally
@mdsafikulislam9113
@mdsafikulislam9113 8 күн бұрын
Is it suitable for enterprise level.
@qozia1370
@qozia1370 2 ай бұрын
Very beautiful tutorial. Thank you!
@user-sv9gl3yg8k
@user-sv9gl3yg8k 2 ай бұрын
Hi, can you tell me. When I configure the panel to hide and appear, the text panel does not take up space with the icon panel. They stay in their places and only disappear and appear in turn
@CreateBeautifulThings
@CreateBeautifulThings 2 ай бұрын
You may have missed a step when I do horizontal layout, vertical layout or grid layout of the widgets. Make sure to follow the steps as I do carefully. Otherwise it may not work
@user-xn3kc7ig6f
@user-xn3kc7ig6f 3 ай бұрын
Please a CRUD 3.0
@love_laugh6428
@love_laugh6428 4 ай бұрын
why when you check a button, other button become unckeck? how did you do that?
@love_laugh6428
@love_laugh6428 4 ай бұрын
i got it, select all pushbuttong and right click to add to a button group
@CreateBeautifulThings
@CreateBeautifulThings 4 ай бұрын
Please follow each step in the video. I explained mutually exclusive in the video
@nieska6706
@nieska6706 4 ай бұрын
how to hide stackedwidget pager?
@CreateBeautifulThings
@CreateBeautifulThings 4 ай бұрын
Do you mean the arrows that appear at the top right corner. I realized when you implement your software and convert UI file to python file, you won't see it appearing. It's as easy as that
@nieska6706
@nieska6706 4 ай бұрын
@@CreateBeautifulThings awesome, thank
@leogsantos
@leogsantos 3 ай бұрын
That was extremely helpful! But I have a suggestion for button attributions: # Connecting the buttons directly to the switch_page method self.dashboard_1.clicked.connect(lambda: self.switch_page(0)) self.dashboard_2.clicked.connect(lambda: self.switch_page(0)) self.profile_1.clicked.connect(lambda: self.switch_page(1)) self.profile_2.clicked.connect(lambda: self.switch_page(1)) self.messages_1.clicked.connect(lambda: self.switch_page(2)) self.messages_2.clicked.connect(lambda: self.switch_page(2)) self.settings_1.clicked.connect(lambda: self.switch_page(3)) self.settings_2.clicked.connect(lambda: self.switch_page(3)) # Single method to switch pages def switch_page(self, index): self.stackedWidget.setCurrentIndex(index)
@sivahariharan
@sivahariharan 3 ай бұрын
your rushing the code explaination and then the uft 8 be changed before converting the ui to py file
@CreateBeautifulThings
@CreateBeautifulThings 3 ай бұрын
If I didn't speed up the code the video would be longer than 1 hour. Above all, I wish the video was of help and that you understood the coding process
@user-sk4xs3qv4e
@user-sk4xs3qv4e Ай бұрын
Hi! Please, take me you .ui file and python code.
How to convert Python File to Executable File (.py to .exe)
8:35
Create Beautiful Things
Рет қаралды 1,1 М.
Khó thế mà cũng làm được || How did the police do that? #shorts
01:00
The joker's house has been invaded by a pseudo-human#joker #shorts
00:39
Untitled Joker
Рет қаралды 11 МЛН
Василиса наняла личного массажиста 😂 #shorts
00:22
Денис Кукояка
Рет қаралды 9 МЛН
МАМА И STANDOFF 2 😳 !FAKE GUN! #shorts
00:34
INNA SERG
Рет қаралды 3,8 МЛН
I use Drag and Drop to build modern Python Apps
14:08
Softlinks
Рет қаралды 48 М.
Туториал по работе с PyQt5 и QtDesigner
31:43
IT-куб ОНТ
Рет қаралды 18 М.
PyQt vs. PySide: Differences, Similarities, and Licenses [2022]
6:58
Code First with Hala
Рет қаралды 46 М.
A basic PySide6 and Qt Designer tutorial.
1:33:05
Jason Codes Qt
Рет қаралды 35 М.
How to use Qt Layouts
19:18
Velcode
Рет қаралды 89 М.
Creating Your Own Qt Applications...It's Easy!
15:27
DistroTube
Рет қаралды 35 М.
Python Modern Invoice Generator usig pyside6 and reportlab
29:24
Mastering Python
Рет қаралды 2,5 М.
PyQt5: The Easiest Way To Make Side Menus With Animation!
21:06
Python With Sh1de
Рет қаралды 20 М.
Khó thế mà cũng làm được || How did the police do that? #shorts
01:00