Build a complete mobile | Desktop | Web app with Python - Python Flet(Flutter) tutorial

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

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

  • @1mrnewton
    @1mrnewton  10 месяцев назад +18

    Thanks for watching. You can now compile your app to apk for android or ipa for ios.
    You need to upgrade your flet version to atleast 0.18 .
    To build, run:
    Flet build --org
    example:
    flet build apk --org com.example.myapp

    • @swnerd4080
      @swnerd4080 8 месяцев назад +1

      When I give the command this error appears:
      The `flutter` command is not available in PATH. Install the Flutter SDK.

    • @kayphasgondwe5546
      @kayphasgondwe5546 5 месяцев назад +1

      Then install sdk

  • @Riderzbeta
    @Riderzbeta Год назад +20

    finally someone showing something with a beautiful finish using flet, thank you very much

  • @jordiwebstyle6629
    @jordiwebstyle6629 Год назад +11

    Muchas Gracias Mr. Newton , por fin he comenzado a entender FLET , creo que tiene muchísimo futuro 👏👏👏

  • @eeveiv8582
    @eeveiv8582 Год назад +3

    Thank you! You're the only one who showed me how to change pages! Well, or am I just inattentively watching / reading the flat documentation. I beg you, make a video on how to write one page in one file, another in other. Thank you very strong!

    • @1mrnewton
      @1mrnewton  Год назад

      Thank you!
      I have a playlist with more flet examples, you’ll find more “separate pages” examples in the playlist. Check my profile.

  • @titled_cube_tutorial
    @titled_cube_tutorial 9 месяцев назад +4

    This is future of python

  • @yash1152
    @yash1152 Год назад +28

    Video Related:
    2:11 8:59 the preview of the application - two pages
    4:16 importing flet for tutorial/demo purposes as "from felt import *"
    in production code: do "import flet as ft" or "from flet import ( x, y, z, ... )"
    14:24 suppos speedup starts here
    26:35 watch later (or maybe runthrough at 16x)
    55:21 seems that second page content starts here
    1:00:48 yeah, it doesn't show the OOP way
    Documentation Related:
    9:23 flutter: child; flet-python: content
    9:47 Stack( controls=[] )
    12:03 Row( controls=[] ) 13:28 Column( controls= )
    13:36 Container( child= ) {singular}
    16:26 alignment='spaceBetween'
    19:22 appending elements with for loop

    • @foodies690
      @foodies690 Месяц назад

      WEB_BROWSER not defined error i also tried from flet import WEB_BROWSER

  • @raJeshraOte14
    @raJeshraOte14 Год назад +5

    Thanks for sharing ..pls create more tutorials🙏

    • @1mrnewton
      @1mrnewton  Год назад +1

      I'm glad you enjoyed it. More tutorials coming

  • @oliwerfimmel9258
    @oliwerfimmel9258 Месяц назад +1

    Hi, great video! How did you manage to keep the app refreshing in the background? Everytime that i want to see changes, i need to restart the app using terminal.

  • @cyberhard
    @cyberhard Год назад +6

    Excellent tutorial! Keep up the good work.

  • @swnerd4080
    @swnerd4080 8 месяцев назад +1

    Great teaching, congratulations!
    Make a video showing how to turn it into an APK!

  • @tikinfluence
    @tikinfluence 3 месяца назад

    Nice video sir. Sir please can you make a video on how to use flet for the front end and django for the backend? we are many of us waiting for such a tutorial, you will be the first on youtube to do it. thanks

  • @spotnuru83
    @spotnuru83 6 месяцев назад +1

    Thank you so much for the great tutorial, i am trying to do it side by side watching your video, the icons menu, search and notification outlined is not white colored, i dont know why its not appearing as white, their color is getting mixed in to the background color. could you please help?

  • @ap99149
    @ap99149 8 месяцев назад +1

    Amazing video, it's game changing to see a Python GUI looking this good.
    When I run the code from your Github for this tutorial, the GUI doesn't load and remains blank. I have Flet setup and other tutorials/demos are working.
    Any ideas why this might be?

  • @juniorMr
    @juniorMr Год назад +1

    Man ,your channel are amazing

  • @weskera7x53
    @weskera7x53 8 месяцев назад

    Thanks for this introduction to flet ! Is clear and very nice explained!
    Wich VScode plugin are you using? Your code colors highlights are very nice !

  • @ПавелВылиток-р7ш
    @ПавелВылиток-р7ш Год назад +2

    Please advise how to deploy the Flet app to Apple appstore?

  • @mariodelgado165
    @mariodelgado165 12 дней назад

    hello new sub, greethings from costa rica

  • @nadetdevfullstack7041
    @nadetdevfullstack7041 4 месяца назад

    Excellent! Bravo!

  • @VoxAcer
    @VoxAcer 7 месяцев назад

    thank you for the tuto much appreciated.
    please when i tried using your custom checkbox i encountered a AssertionError stating that the control must be added to the page first so what am i doing wrong and i cannot check the boxes

  • @raahimstudio6949
    @raahimstudio6949 7 месяцев назад

    nice app and effort bythe way how to see your application when you are coding

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

    "Excellent tutorial! I have a question. Do you think we can build an E-learning platform using Flet for both mobile apps and web apps?"

  • @foodies690
    @foodies690 Месяц назад

    i just finished side by side coding and learnig and found out create_task_view is not in this video , even if you might not able to provide another video on this can you provide complete code atleast so i can look at it and learns please. 🙏🙏

  • @mamenggaluh8897
    @mamenggaluh8897 Год назад +3

    Still kinda hard to maintain this flet codebase.
    I'm used to reusable components, but somehow with how python works, splitting components feels much more annoying, some widget won't update, or some state problems because python variables are just references.
    Maybe can you show some examples or best practices how to split flet into smaller components?

    • @1mrnewton
      @1mrnewton  Год назад +2

      You should use classes. And inherit from the component. With that you have the ability to use the attributes. Example: you can inherit from the Container class, after that, just import it in your file, you have all the attributes. Also, same as custom controls, you can still inherit and do anything you want. Maybe I might create a video on that. I’ve been little off. Dealing with some issues. I’ll be back with more videos soon.

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

      @@1mrnewton Thanks, hoping for you to be back soon, your videos are the most helpful resource to explore Flet, because there's still few of them even their docs still incomplete.
      Talk about splitting components, i did it but somehow it introduced some weird quirks. Like when i want to change page by clicking on a button, redirected to a new component that has View and Controls splitted each into their own file. But, if i want to add another button to go to another page, things starting to get weird like, Page doesn't want to refresh, even though i drill that as arguments for each components, but still. Maybe i've done it wrong?

  • @fidelischukwunyere3142
    @fidelischukwunyere3142 Год назад +1

    Great. Keep it up.

    • @1mrnewton
      @1mrnewton  Год назад

      Thank you!
      More tutorials coming

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

    Mr. Newton, what do you think about programming in OOP? On your way is pretty easy to program and I love it, but I have saw a lot of annoying people saying "yuck, aren't you programming in OOP?" and something like that

    • @1mrnewton
      @1mrnewton  Год назад +1

      Using OOP for development is really recommended. Especially in GUI development. Makes things much easier. In some of my videos you can see I used OOP with component base structure.

  • @sohaibalam2004
    @sohaibalam2004 Год назад +1

    Best tutorial❤

  • @William593-n6x
    @William593-n6x Год назад +1

    La aplicación se ve de lujo!! Felicidades. Dime cómo se llama ese tema que usas en vscode?
    Puedes explicarme por favor, cómo puedo implementar la barra de progreso en una descarga de videos usando el modulo pafy de python? Lo hice en ctkinter pero aqui en flet esta complicado. Gracias y saludos desde Ecuador

    • @1mrnewton
      @1mrnewton  Год назад

      I’m glad you enjoyed it. I’ll try and make a video on download with progress bar and the package you mentioned. Cheers

  • @mawkuri5496
    @mawkuri5496 3 месяца назад

    if i want to build a dynamic website, what is the best backend for flet?

  • @digitalmachine0101
    @digitalmachine0101 5 месяцев назад

    Good information

  • @pablo20237
    @pablo20237 Год назад +1

    Excellent, thank you.

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

    Hahaha omg i just downloaded yesterday your github repo!
    Its a nice starting point!
    But some animations are broken 🤔
    Still a great starting point! 🤗
    Thanks for it!

    • @1mrnewton
      @1mrnewton  Год назад

      Glad you like it, can I know where you have the problem?

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

    Thanks! Good Job Man!

  • @PradyumanSharma-t6w
    @PradyumanSharma-t6w 4 месяца назад

    i am not getting output in a right way . How this text is working well because when i wrote it , text comes with icons after that took help of chatgpt but it making another container there i also got some issue like content = categories_card because i already used content= text(values="category"),

  • @MaryamJavid-n4j
    @MaryamJavid-n4j 8 месяцев назад

    scroll ='auto' works to scroll to the side whats the equivilant to scroll down??

  • @stevofootballhome6786
    @stevofootballhome6786 8 месяцев назад +1

    What vs code extension you use for flet

  • @mitchcarter
    @mitchcarter 7 месяцев назад

    Why does it feel like you coded everything backwards, or the structure if your code is backwards?

  • @DalazG
    @DalazG 9 месяцев назад +1

    As a newbie to coding. Curious, is the method shown in this video the same way we display output of code in general? ( visual)
    I'm trying to find ways to create an AI Python robot to integrate into mt4 as an EA i wanted to find a way to watch it train

    • @1mrnewton
      @1mrnewton  9 месяцев назад +1

      Which platform are you targeting ?

    • @DalazG
      @DalazG 9 месяцев назад

      @1mrnewton thanks for the response! preferably mql4 or mql5 but i think it needs to pull from python for the ai model

  • @azuretooth
    @azuretooth 3 месяца назад

    Hi, how could you refresh app window without restarting a script?

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

    not viable deploy to apk or api... today, but, perfect material dude

    • @1mrnewton
      @1mrnewton  Год назад +1

      Thank you man, I’m glad you enjoyed it

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

    Amazing tutorial!
    Everything clear! Thank you!

    • @1mrnewton
      @1mrnewton  Год назад +1

      Glad you enjoyed it❤️

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

    Im trying to make a todolist app. Is there a way to save the notes between app restarts? Great video!

    • @1mrnewton
      @1mrnewton  Год назад +1

      You use can the client storage object.

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

      @@1mrnewton thank you for your answer!
      I tried that. But i got some errors doing it. Would be nice if you make a video about it with an example! Couldn't find one anywhere.

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

    hi thank you for your tutorial, it's very helpful😀
    If you know, could you please let me know how do we have unit test for flet application using pytest or unittest?

    • @1mrnewton
      @1mrnewton  Год назад +2

      I’ll research and make a video on that

  • @kahowong6619
    @kahowong6619 Месяц назад

    can it send notifications, use Bluetooth and web?

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

    thanks man saludos from mexico

  • @David-tl2de
    @David-tl2de Месяц назад

    Works, but does not resume once put in background, anyone same issue?

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

    why i write code my window not black , and nothing change inside like in your video...

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

    Can u make a video on how to integrate payment gateways with python & flet.

  • @ahcenziar
    @ahcenziar Год назад +1

    hi , I wanna ask you somthing , after making the UI and the backend with sqlite3 for example, how can i turn it as android app and install it on mobile

    • @1mrnewton
      @1mrnewton  Год назад +1

      I think you can now build to iOS ! I’ll make a video on that.

    • @ahcenziar
      @ahcenziar Год назад +1

      @@1mrnewton thank you for replying but i mean , convert the py code to APK eather android or ios

  • @lakshmigupta9265
    @lakshmigupta9265 7 месяцев назад

    from where you copy the code for custom_checkbox
    ?

  • @OussamaSimon-z7s
    @OussamaSimon-z7s Год назад

    thanks bro for this amazing tutorial , but how to build the project as a "apk" file ??

    • @1mrnewton
      @1mrnewton  Год назад +1

      I’m not sure that’s possible yet. I’ll make videos on that when update for that is out. But there some packages available to achieve it. You can browse the flet discord community for more details.

    • @OussamaSimon-z7s
      @OussamaSimon-z7s Год назад

      @@1mrnewton thanks for the reply

    • @1mrnewton
      @1mrnewton  Год назад

      @@OussamaSimon-z7s good news! You can now build to iOS. Android coming soon. Checkout the flet 0.8 release notes.

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

    Can you make a video on how to convert flet code in android (apk) and iOS software please

    • @1mrnewton
      @1mrnewton  Год назад

      Once CLI build is ready, I’ll make a video on that🚀

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

    Thanks for your tutorial, it's great! Just a question, The background of the main window is white and the icons are black, how can i change it?

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

      I'm changing the colors one by one.

    • @1mrnewton
      @1mrnewton  Год назад +1

      For each icon, you can set the color=“name of color of your choice” or you can use the hashcode

    • @gagakagaga
      @gagakagaga Год назад +2

      add page.theme_mode="dark" right after def main():

  • @vishalnaik5453
    @vishalnaik5453 4 месяца назад

    How to use camera functionality?

  • @chinagoromedeh-my3vd
    @chinagoromedeh-my3vd Год назад

    Please I need more of your videos ,

    • @1mrnewton
      @1mrnewton  Год назад

      I’ll be uploading soon🎉

  • @tengofekadu1735
    @tengofekadu1735 Год назад +1

    Great work👋. My question is your indentation on vs code looks clean. do you use any plugin or something else. second question is the hot reloading is not working it gives me an error [flet : The term 'flet' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify
    that the path is correct and try again. ] thanks for your help it is really good content.

    • @1mrnewton
      @1mrnewton  Год назад

      I’m using one monokai theme, “prettier” for code formatting, and “autopep8” for auto indentations fixing and additional code formatting.
      The issue with flet not recognized.
      Have you installed the flet framework?
      Install with: pip install flet
      Also which OS are you on?

    • @foodies690
      @foodies690 Месяц назад

      @@1mrnewton i faced the same issue maybe he is in windows he need to create a virtual enviorment and install flet in it , then it works.

  • @javiart8744
    @javiart8744 Год назад +1

    Me perdi en el minuto 17, de ahí en adelante no pude seguir con el codigo, una lástima,porque me estaba quedando bien, pero ahora el Whats up olivia y categories me sale con líneas rojas, creo que moviste algunas lineas de codigo y nosotros los neofitos nos perdimos

    • @1mrnewton
      @1mrnewton  Год назад

      Sorry about the confusion man.
      Check in the comments I have explained it there.

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

    Thanks!❤

  • @randomchannelum
    @randomchannelum 6 месяцев назад

    Thanks!

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

    Nice Tutorial. So is there a way to compile with the flet fo APK

    • @1mrnewton
      @1mrnewton  Год назад +3

      Not available yet, saw someone used PWA and installed the app with chrome onto his phone, not sure how, I'll research more and make a video on that.

  • @DerekNhyira
    @DerekNhyira Год назад +1

    Please what extension do you use to make those lines

    • @1mrnewton
      @1mrnewton  Год назад

      I'm using Onemonokai, and prettier
      You can watch this video where I setup my vscode: ruclips.net/video/gCQGnYEBkh0/видео.html

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

    Just a question because i can't find this on the internet. Can I run the app through a virtual device just like the flutter and get the hot reload functionality?

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

    Could you help me? I didn't understand exactly how to pass the parameters of a file to main

    • @1mrnewton
      @1mrnewton  Год назад

      I don’t get your question well🤔

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

    Hi! How to remove black background of main window and top buttons? Leave only the main container with radius corners. Thanks

    • @1mrnewton
      @1mrnewton  Год назад

      Hey sorry for late reply, I think this is what you're looking for
      pg.window_bgcolor = colors.TRANSPARENT
      pg.bgcolor = colors.TRANSPARENT
      pg.window_title_bar_hidden =True
      pg.window_frameless = True
      Note: pg = page

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

      @@1mrnewton Thank you! I figured it out on my own 🤯 You also need to add the page.add(container) line before app(), and delete the page.go(page.route) line, then it works! But if you click on "+" and go to create_task_view, then the background turns black and again goes beyond the boundaries of the main radius container. If you close it with the "X" button, then the black background remains under the container and does not disappear 😟

  • @borisstancev7371
    @borisstancev7371 7 месяцев назад

    Why do i have to double click on the buttons for new task and returning?

    • @ob31t
      @ob31t 3 месяца назад

      did you find the solution?

  • @lakshmigupta9265
    @lakshmigupta9265 7 месяцев назад

    some codes from where you paste?

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

    Sir how can i run flet on windows 8.1? I got error when trying to run the app on my windows 8.1 laptop.. please help 🙏

  • @Bobbyfisher345
    @Bobbyfisher345 10 месяцев назад

    its possible build de backend in django and do de frontend in flet? it would be my inspiration

    • @1mrnewton
      @1mrnewton  10 месяцев назад

      Yes! And I recommend that.

    • @Bobbyfisher345
      @Bobbyfisher345 10 месяцев назад

      @@1mrnewton yeesss! Thank you!!

  • @mortalcode5
    @mortalcode5 11 месяцев назад

    COOL

  • @ishq_e_musafir
    @ishq_e_musafir 9 месяцев назад

    ImportError: cannot import name 'CustomCheckBox' from 'custom_checkbox'

    • @1mrnewton
      @1mrnewton  9 месяцев назад

      Make sure the CustomerCheckBox exists

  • @marcoojeda7678
    @marcoojeda7678 Год назад +1

    Hello,
    I am developing a desktop app, but I have a question, how can I make some correction in the code so that the users who use my desktop application can have the updated code?
    Being a correction, it should not be an alternative to update the app, but it should be a mandatory update.
    Amazing video.

    • @1mrnewton
      @1mrnewton  Год назад +5

      So you can have api at somewhere and have the version of your app in database so that you can just check the version
      If the version is older, bring a prompt that ask to download or close
      And that’s all.

  • @키로우-l3h
    @키로우-l3h 11 месяцев назад

    How do you like Flet compared to streamlit?

    • @1mrnewton
      @1mrnewton  11 месяцев назад

      I haven't tried streamlit yet; Flet is awesome!

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

    Mis iconos de notofocaciones y busqueda, estan de color negro, como lo puedo cambiar

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

      agrega esto debajo de tu def main: page.theme_mode = "dark"

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

    Man do you have a clue when the flet team well manage to create an apk for android?

    • @1mrnewton
      @1mrnewton  Год назад +1

      I have no idea when. But I have seen it’s on the official website, they need a c++ dev for either paid or free contribution on a section for that.

  • @bulbulahmed3098
    @bulbulahmed3098 10 месяцев назад

    ❤❤❤

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

    When will ios/android implement flet?

    • @1mrnewton
      @1mrnewton  Год назад

      I actually don’t know yet, but we hope it comes soon.

  • @Xyrizeditz
    @Xyrizeditz 5 месяцев назад

    Hey i just have a question as your theme is dark mode but my theme instead is light mode and i have used functions like theme = Theme(color_seed_blah blah = dark) but it doesnt work, could you help with that?
    Thanks!

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

    hola mr Newton, a mi no se me autoactualiza el codigo al irlo escribiendo, tambien intente usar el comando flet -r y me da un error "ImporError: cannot import name 'git' from 'plumbum.cmd'" no se que sea

    • @1mrnewton
      @1mrnewton  Год назад

      Which OS are you on?
      You can also find help faster from the flet discord community: discord.gg/dzWXP8SHG8

  • @chrisr2063
    @chrisr2063 Год назад +6

    Whatever confusion you did at 17 minutes is absurd. You minimized and did some trickery.

    • @chrisr2063
      @chrisr2063 Год назад +1

      I still learned alot though. Thank you.

    • @1mrnewton
      @1mrnewton  Год назад +5

      17:00
      Nope, I actually switched to the app i created before I did the tutorials, so I can show you what we going to create next.
      I hope this clears the confusion.

    • @1mrnewton
      @1mrnewton  Год назад +1

      @Chris R I'm glad you did .🙏

  • @Roguewolf.7
    @Roguewolf.7 Год назад

    Why do you have when you modify a color or write text to look in the application, the application happens and you don't need to run again, and me no

    • @1mrnewton
      @1mrnewton  Год назад

      Sorry, come again. I don’t get your question well.

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

      @@1mrnewton I think the question is : Why don't you need to rerun the program, because the app on the right change by itself (when you change the bg color for example)

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

    Having issues packaging and building my project to dextop app

    • @1mrnewton
      @1mrnewton  Год назад +1

      Which flet version are you on?

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

      @@1mrnewton latest version, it's not detecting some imports, added them to hidden imports, still not working

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

    What is the quickest and easiest way to deploy the application into a mobile app? Does it require additional 3rd-party platforms?

    • @1mrnewton
      @1mrnewton  Год назад +4

      For now, you can’t build it into mobile .
      The developers are working hard on it. I’ll edit this comment when the release for that comes.

    • @aaroncatolico7550
      @aaroncatolico7550 Год назад +1

      @1mrnewton I look forward to your response. Don't forget lol

  • @abdulhodiymuhiddinov
    @abdulhodiymuhiddinov 8 месяцев назад

    is it work on Phone?

  • @zacklu8134
    @zacklu8134 10 месяцев назад

    how about the performance of the flet?

    • @1mrnewton
      @1mrnewton  9 месяцев назад

      Still needs improvement

  • @LhordeYoungSam-sg1zw
    @LhordeYoungSam-sg1zw Год назад +1

    Boss why are you not posting video now Adays

    • @1mrnewton
      @1mrnewton  Год назад

      I’ll start uploading soon!

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

    but how to deploy the app and release it to the play store?

  • @AKASHK-u1g
    @AKASHK-u1g Год назад

    How to deploy this python application into android mobile?

    • @1mrnewton
      @1mrnewton  Год назад

      Not possible yet. People use PWA method to run on their phone, I’m not familiar with that yet.

  • @房秀俊
    @房秀俊 10 месяцев назад

    Customecheckbox is no gone... sooo sad...

    • @1mrnewton
      @1mrnewton  10 месяцев назад

      I don't get it. Come again?

  • @PariBhati-k9c
    @PariBhati-k9c Год назад

    How to build apk for this code??

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

    Do you know any ways to compile this to an apk file?

    • @1mrnewton
      @1mrnewton  Год назад

      not yet, I'm still researching, I'll edit this comment once I find something useful!

  • @aiviet5497
    @aiviet5497 Год назад +2

    Python flet hit React Native

  • @Jhons-Play
    @Jhons-Play 11 месяцев назад

    Can you please tell me how to make it so that like you. So that I write code in real time and it displays all changes?

    • @1mrnewton
      @1mrnewton  11 месяцев назад +1

      Desktop or mobile
      if desktop, pass the -r argument

    • @Jhons-Play
      @Jhons-Play 11 месяцев назад

      @@1mrnewton I mean to have a phone that shows all your activities like yours, thank you in advance.

  • @bakwoludovic117
    @bakwoludovic117 4 месяца назад

    i subscribe

  • @Eng-py5yh
    @Eng-py5yh Год назад

    I have two questions:
    First: What's the solution to the error:
    The term 'flet' is not recognized as the name of a cmdlet , function , script .....
    I installed flet using pip install and the spelling of command flet -r .... is correct
    Second: when I do run to the code the designed interface showed inside a full screen empty GUI , specifically in the left corner of it why?

    • @1mrnewton
      @1mrnewton  Год назад

      First issue: which OS are you running?
      The issue was raised in the flet discord community and has been fixed. I recommend you check from there.
      Second: I recommend you send screenshot including your code issue in the discord community for help. You can @me in the #help. Username @mrnewton.
      Discord link: discord.gg/dzWXP8SHG8

    • @Eng-py5yh
      @Eng-py5yh Год назад

      @@1mrnewton
      Ok
      Thank you ❣️

  • @hammoudayoussef2435
    @hammoudayoussef2435 3 месяца назад

    is it a native app ?

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

    How can you convert theses codes into apk?

  • @aaronvallejo6856
    @aaronvallejo6856 11 месяцев назад

    Eres Latino, harias un video en español?

    • @1mrnewton
      @1mrnewton  10 месяцев назад +1

      Sorry man, I am not Latino. I don't speak Spanish.

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

    How to build apk,ipa,

    • @1mrnewton
      @1mrnewton  Год назад +1

      Not possible yet, we hope update comes soon

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

    Sir give me python 3 tkinter formobile screen

    • @1mrnewton
      @1mrnewton  Год назад

      You mean how to compile tkinter app to mobile?

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

    Bro didn't understand the routing session flow

  • @shillowcollins6392
    @shillowcollins6392 9 месяцев назад

    Hello sir, are you a Ghanaian?

    • @1mrnewton
      @1mrnewton  9 месяцев назад

      Yes

    • @shillowcollins6392
      @shillowcollins6392 8 месяцев назад

      Great, nice to meet you. I am as well.... Thanks so much for such a great content@@1mrnewton