Python Tutorial DataTable Using Flet

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024
  • In this Python tutorial, we'll go over the basics in setting up a DataTable control using Flet. We'll divide the application into three main parts, each serving a specific function. Other extra features
    include search and filtering functionality.
    **note: this is an updated version of a previous video. Same content but the code has been changed.
    Patreon:
    www.patreon.co...
    Flet framework documentation:
    flet.dev/docs/
    Channel GitHub:
    github.com/Lin...
    Other tutorials can be found here:
    • Python Tutorial - Flet...
    • Python Web Development...
    #python #tutorial #programming

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

  • @raymondizarie9229
    @raymondizarie9229 20 дней назад +3

    Very instructive code in its structuring.
    In version Flet 0;23.2 to create a data row we need to use data = ft.DataRow(cells[]), instread of ft.DataRow() (in def fill_data_table(self) ).
    Thank you very much

  • @张志广-q1h
    @张志广-q1h 8 месяцев назад +9

    Cannot find the code in your github🙄

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

      in dt_flet

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

    This for Android application or desktop?

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

    شكرا لك على المشاركة

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

    شكرا على المحتوى المفيد

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

    Hola pagué mi suscripción para este código no lo encubro me puedes ayudar

  • @SGNewWay
    @SGNewWay 2 месяца назад

    Do you know how to fix the names of datatable headers?

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

    Hi! Do you have a repo with this content? That's amazing!

  • @luizfelipegrifo1198
    @luizfelipegrifo1198 22 дня назад

    17:59

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

    Perfeito, quando estiver programando assim, vou amar. Por enquanto só aprendendo técnicas e logica de programação.

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

    what do you use for code? Vs and?

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

    Good information

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

    👍👍👍👍👍

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

    If I want to built an desktop app I going to need vertical scroll and horizontal scroll. I got vertical scroll with a list view but horizontal scroll it’s my issue. Could you help me with a some idea. Thank you.

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

      I believe you will need a Row element, and to set scroll to True.
      The code might look something like:
      Row(
      scroll = True,
      control = [ ]
      )
      If you want both vertical and horizontal, you will likely need to nest the row within in a column that also has the scroll property set to true.