Flet Tutorial - GridView Filter
5:36
Flet Tutorial - Read PDF as Image
13:52
Пікірлер
@conzumido
@conzumido 16 сағат бұрын
iim trying to do the neu build but when a I execute de .exe in another laptop the app open a neutralino web
@RhinoTimelaps
@RhinoTimelaps Күн бұрын
Please deleted copy of code from sites. And give link to original github author.
@sriedynurcahyo3894
@sriedynurcahyo3894 Күн бұрын
@@RhinoTimelaps Ok sorry. I fixed it.
@misteranonymous1157
@misteranonymous1157 2 күн бұрын
How to change the app icon and app name
@sriedynurcahyo3894
@sriedynurcahyo3894 2 күн бұрын
@@misteranonymous1157 Just add the images you want into the assets folder. I've seen it in the flet website documentation.
@adelghany
@adelghany 5 күн бұрын
I want to compile a program using flet and pyrebase library to apk application
@sriedynurcahyo3894
@sriedynurcahyo3894 3 күн бұрын
I haven't tried it yet. Pyrebade doesn't work in flet. I use other libraries like fireo
@alialebady2376
@alialebady2376 6 күн бұрын
hello sir,why it is after stopping server not update main page?!!
@sriedynurcahyo3894
@sriedynurcahyo3894 6 күн бұрын
@@alialebady2376 you can add web browser mode in you code app(main,view=AppView.WEB_BROWSER,port=5000). Run flet main.py
@gowin1956
@gowin1956 8 күн бұрын
can i check face liviliness using face api js?? whether the peson is real or a photo?
@sriedynurcahyo3894
@sriedynurcahyo3894 8 күн бұрын
@@gowin1956 Just try it maybe it works
@sriedynurcahyo3894
@sriedynurcahyo3894 8 күн бұрын
@@gowin1956 It's the same as detecting faces. In this case, it's a face webcam. If you send a photo without movement, it will still detect the face.
@slimysnail6071
@slimysnail6071 8 күн бұрын
Code : import flet from flet import * def main(page: Page): page.window.width = 300 page.window.height = 200 # AND ENABLE TRANSPARENT bgcolor page.bgcolor = "transparent" page.vertical_alignment = "center" page.horizontal_alignment = "center" # AND HIDE TITLE BAR page.window.title_bar_hidden = True # ENABLE FRAMELESS page.window.frameless = True page.window.bgcolor = "transparent" page.window.opacity = 20 # AND DISABLE RESIZE WINDOW page.window.resizable = False page.window.focused = True def hoverme(e: ControlEvent): # Check if cursor is hovering over if e.data == "true": e.control.scale = transform.Scale(scale=1.5) # Enlarge on hover else: e.control.scale = transform.Scale(scale=1) # Reset to normal scale page.update() page.add( # ADD WINDOW DRAG FOR DRAG ELEMENT IN CONTENT HERE WindowDragArea( content=Container( bgcolor="blue200", padding=10, content=Text("hello app", size=30), # AND ADD ANIMATION IF YOU HOVER Container animate_scale = animation.Animation(100, "bounceInOut"), border_radius = 30, # ADD HOVER EFFECT on_hover=hoverme, # ADD SHADOW shadow = BoxShadow( spread_radius = 1, blur_radius = 30, # COLOR SHADOW color = "white", blur_style = "outer" ) ) ) ) flet.app(target=main)
@markjohnignacio6458
@markjohnignacio6458 9 күн бұрын
There is no settings
@sriedynurcahyo3894
@sriedynurcahyo3894 9 күн бұрын
@@markjohnignacio6458 According to the video settings
@liminha-qs1ve
@liminha-qs1ve 10 күн бұрын
i got a error: ( ● ) Packaging Python app ⏳... Error: FormatException: Missing extension byte (at offset 2021) Deleting temp directory C:\Users\Usuario\AppData\Local\Temp\serious_python_temp2dbbd70e ( ●) Packaging Python app ⏳... Deleting sitecustomize directory C:\Users\Usuario\AppData\Local\Temp\serious_python_sitecustomizea5433762 Deleting Python directory C:\Users\Usuario\AppData\Local\Temp\hostpython3.11_29952b52 [13:28:35] Deleting Flutter bootstrap directory C:\Users\Usuario\AppData\Local\Temp\flet_flutter_build_3g69gEqaTW Flet app package app/app.zip was not created. Run subprocess: ['C:\\src\\flutter\\bin\\flutter.BAT', 'doctor'] [13:28:42] Doctor summary (to see all details, run flutter doctor -v): [√] Flutter (Channel stable, 3.24.3, on Microsoft Windows , locale pt-BR) [√] Windows Version (Installed version of Windows is version 10 or higher) [√] Android toolchain - develop for Android devices (Android SDK version 35.0.0) [√] Chrome - develop for the web [√] Visual Studio - develop Windows apps (Visual Studio Community 2022 17.11.5) [√] Android Studio (version 2024.1) [√] VS Code (version 1.93.1) [√] Connected device (3 available) [√] Network resources • No issues found! after this nothing happen, i alreadely upgrade my flet, flutter and pip and recreate the virtual env
@harfho
@harfho 12 күн бұрын
Wow. Thanks
@Paolog_
@Paolog_ 15 күн бұрын
Thanks for the tuto !!! It is a very cool tuto, that goes directly on the main goal. Thanks !!!
@TusharSawariya-o8c
@TusharSawariya-o8c 17 күн бұрын
same op[erating system ma kia ya alag
@Alman-b2l
@Alman-b2l 17 күн бұрын
EN SQLITE?
@hpj2672
@hpj2672 18 күн бұрын
is this work when build to android apk?
@sriedynurcahyo3894
@sriedynurcahyo3894 18 күн бұрын
@@hpj2672 I haven't tried it yet. But it works for desktop.
@jphermans
@jphermans 20 күн бұрын
Hello, I get an error when running the yml. "The following actions uses node12 which is deprecated and will be forced to run on node16: actions/setup-python@v2." Any idea how to solve this? Thank you.
@sriedynurcahyo3894
@sriedynurcahyo3894 19 күн бұрын
You test my sampel code in video desc? . I dont know how to solve . You can search in Google . Copas you issue to Google
@guipython
@guipython 23 күн бұрын
muito bom !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@RajeshHalyal
@RajeshHalyal 25 күн бұрын
Is the code available or this and other examples of nicegui ?
@Absolu-Officiel
@Absolu-Officiel 27 күн бұрын
I have libssl error on Laraval 11 with php 8.2, and i don't know why
@sriedynurcahyo3894
@sriedynurcahyo3894 27 күн бұрын
@@Absolu-Officiel I don't know what the error is. Maybe the latest version of laravel doesn't work as shown in the video. I'll give you. Example code. [email protected]
@Absolu-Officiel
@Absolu-Officiel 27 күн бұрын
Why ..../api ? and not at root level ? I don't like it too much but...
@sriedynurcahyo3894
@sriedynurcahyo3894 27 күн бұрын
@@Absolu-Officiel Maybe you can modify it. For example, what I gave as an example, if you find /api then change it to /
@moonlightstudio
@moonlightstudio Ай бұрын
can it be for private/closed repositories?
@sriedynurcahyo3894
@sriedynurcahyo3894 29 күн бұрын
Yes . You can try
@mamenggaluh8897
@mamenggaluh8897 Ай бұрын
So far 1 1 nya channel yg mengcover Framework baruu. Thank you bangg, agak bingung mau implement state yg bener² kayak state management, udah nyoba ini itu malah gk berubah² wkwk yaa mungkin karena behavior dari Python yang "immutable" kayaknya ya, kalau dipaksain malah berat. Keep up bang
@leko2605
@leko2605 Ай бұрын
Very useful, next time put some background music!
@gabrielfreire9021
@gabrielfreire9021 Ай бұрын
Hey friend, the news of the moment is FastHTML. Have you seen it?
@aervajashwanth7905
@aervajashwanth7905 Ай бұрын
Please share codebase
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@aervajashwanth7905 email [email protected]
@alanangelo
@alanangelo Ай бұрын
Hi...Is it possible to scroll only the table rows? Thanks
@alanangelo
@alanangelo Ай бұрын
Hey how's it going? Does this app work on mobile devices (Android)? Thanks!
@leanio21
@leanio21 Ай бұрын
agora está dando um erro no github
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@leanio21 email [email protected]
@gogul.j7930
@gogul.j7930 Ай бұрын
give me code
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@gogul.j7930 email [email protected]
@gogul.j7930
@gogul.j7930 Ай бұрын
can you please send me the code?
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@gogul.j7930 email [email protected]
@theexposer9483
@theexposer9483 Ай бұрын
Hi, can you share the code, it would save our time to read and copy. Thanks for the good effort.
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@theexposer9483 email [email protected]
@theexposer9483
@theexposer9483 Ай бұрын
@@sriedynurcahyo3894 thanks, will do.
@CAONST_DEV
@CAONST_DEV Ай бұрын
Good Day, Sorry, undo mensagens!
@CAONST_DEV
@CAONST_DEV Ай бұрын
The insue the plotly is
@CAONST_DEV
@CAONST_DEV Ай бұрын
# Create scatter map fig = px.scatter_geo(data, lat='latitude', lon='longitude', color='mag', hover_name='place', #size='mag', title='Earthquakes Around the World') fig.show()
@sudo3571
@sudo3571 Ай бұрын
i can use the change_city in the ListTile as a function?!!
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@sudo3571 Yes, just try it
@chromax1619
@chromax1619 Ай бұрын
github?
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@chromax1619 email [email protected]
@GLODIEKIBITA-bm5ht
@GLODIEKIBITA-bm5ht Ай бұрын
link the's video
@CAONST_DEV
@CAONST_DEV Ай бұрын
now i will test, tanks, very good day
@CAONST_DEV
@CAONST_DEV Ай бұрын
flet --version 0.24.0 pip install flet --upgrade, now version 0.24.1
@CAONST_DEV
@CAONST_DEV Ай бұрын
Good Day, Whats libs Install ??? Flet_map and Flet-Folium PLOPTLY EXPRESS no package in Flet????? Please, Thanks
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
Upgrade you Flet version
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
Check New video about Flet map . Thats tutorial Is old
@tedTV_1
@tedTV_1 Ай бұрын
your flet tutorials have been so helpful for me, i wish you great luck and success for the work you've put in. Seriously, thank you :)
@TKZ9
@TKZ9 Ай бұрын
tnx
@voafidyras4837
@voafidyras4837 Ай бұрын
What is the maximum file size allowed by file_picker.upload()?
@tiolv1174
@tiolv1174 Ай бұрын
Amazing tutorial, thank you
@yafethtb
@yafethtb Ай бұрын
Very helpful!
@jabboscurio
@jabboscurio Ай бұрын
hey bro your vids are amazing! do you know an alternative for file picker when run as web app? cause file picker doesn't work :/
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@jabboscurio I once made a video of browser file upload with different code. It's in another video
@wahyuprakoso8436
@wahyuprakoso8436 Ай бұрын
bang saya ada kendala deploymen elysia di cyberpanel, ada tutorialnya gak?
@raymundoortiz7269
@raymundoortiz7269 Ай бұрын
no code ?
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@globalassemblage
@globalassemblage Ай бұрын
Hello is there a way to get permission for Android device after apk build like contacts permission or file permission
@kiraelena
@kiraelena Ай бұрын
forget it bro...
@melania-1kkh
@melania-1kkh Ай бұрын
Great
@amab3052
@amab3052 Ай бұрын
how to change app icon inside this process
@sriedynurcahyo3894
@sriedynurcahyo3894 Ай бұрын
@@amab3052 I don't know about that yet. Maybe it's set manually with flet cli instead of github action
@amab3052
@amab3052 Ай бұрын
@@sriedynurcahyo3894 Thank you sm 🌟
@고민-w2w
@고민-w2w Ай бұрын
flet is amazing, thx teacher