How-To add Checkbox and Task List Functionality in Flutterflow

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024
  • Use a list view and toggle icons to make a checklist.
    Learn how to build on top of this checklist to also have a progress bar display your progress with this video: • How-To Configure a Pro...

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

  • @JuanPerez-vv5lk
    @JuanPerez-vv5lk 7 месяцев назад

    Excellent video. Now, how can you update any change in the checkbox ?

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

    are these tasks than idividual for each authenticated user?
    Like if I got multiple users and they log in they should see their individual task-lists and not a general one.
    are these for the individual users or just straight global?

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

    Hi ANya, I am getting response from chatGPT using API call in flutterflow and want to show the response in a checklist. Can you help with that?

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

    For example i need to uldate locostate variable, to delete all task that are selected ?

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

      The tasks have a field in the database that determines if they are finished or not. To set all of them to unfinished you would have to run a loop on each of the tasks and change “completed” to no.

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

    any idea why i cannot add any documents into my content manager?

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

      Check your database settings as you may not have enabled adding to the database.

  • @user-yi6nt9cz3z
    @user-yi6nt9cz3z 10 месяцев назад

    Hi. How can I enable a button only when all of the checkbox is true? I need to save a task list, but the button "Save" can only be enabled, when all the checkbox is true. Can you help me, please?

    • @user-yi6nt9cz3z
      @user-yi6nt9cz3z 10 месяцев назад

      I understand the button function "disabled" on Flutterflow, but I can't use it on a listview of checkboxes

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

      You need to check if all of the tasks are completed. This means doing a backend call on the button for a COUNT of a list of tasks where completed is “yes”. If the count is greater that zero then the button should be disabled. If not, you can enable it.

    • @user-yi6nt9cz3z
      @user-yi6nt9cz3z 10 месяцев назад

      ​@@originalstrokes In my application the list of checks is variable for each machine model, therefore the number of checks is also variable. Also, I can't select each task individually to make a counter. Sorry for not understanding, but I'm new to flutterflow

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

      @@user-yi6nt9cz3zDon’t worry about it! I also made a mistake in my explanation. I meant to say checked is equal to “no”. Essentially you are checking if any tasks are not checked. So do a backhand call on a button and use the same constraints you are using on the list view to retrieve a list of tasks BUT add a filter that says “completed is no” and instead of retrieving a list of tasks, just retrieve a count. Now, it doesn’t matter how many tasks you have or if that number is variable, we are just getting the count of all the tasks that are not checked. On the button add a condition saying the count of tasks is greater than 0, disable this button.

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

    Hi. How can we check or uncheck all checkbox in list with action?

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

      coming soon!

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

      @@originalstrokes Cool, I"ll be waiting, I need it so much

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

      Until then, the idea is similar to the loop we make in this video: ruclips.net/video/RRH68KhM-Ho/видео.html You can ignore the parts about uploading and instead modify it to edit an object instead of create one.

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

      See if this video helps! ruclips.net/video/UeeReUzDncc/видео.html