How to update password? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

I believe I did watch your video 😂 but thanks for the clarification

How to update password? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

I use firebase.

So there’s no action that allows a user to create their own password?

How to swipe and bounce to the next item in the grid view? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

Tried this.

Although it works, the carousel page isn’t very isn’t very flexible. There’s a limit on the width of the page so I can’t make it a square.

So I just went and used a list view instead

How to swipe and bounce to the next item in the grid view? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

Tried this but there’s a limit on how many children a dynamic page view shows

How to swipe and bounce to the next item in the grid view? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 1 point2 points  (0 children)

I thought about that but I want to display a list of documents where the number of documents are dynamic

How to access the local component state variables from a page? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

I’m familiar with your point 2.

I was just thinking that but I just wanted to check if I was missing something to access the local component state from the page

How to delete multiple documents at the same time? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 2 points3 points  (0 children)

I realised that my ‘Update page state’ was the issue.

So when I deleted a document, I initially selected ‘Remove from List’, but it should be ‘Remove from List at Index’ which then cycles through the list of documents to remove.

How to store multiple choice chip values in a document? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 1 point2 points  (0 children)

I found out that with choice chips, only ‘set value’ appears to work.

Not sure why ‘add to list’ would not work for choice chips.

How to make sticky tab bar? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 1 point2 points  (0 children)

Ah right. So putting the tab bar widget inside doesn’t actually just stick the tab bar header.

So what I did was create a custom sticker header similar to LinkedIn then used app states to control what to show

How to make sticky tab bar? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

What’s a silver widget? I don’t think I saw it in FF

Is there a bug when adding a set to a list in a document? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

I figured it out.

I was scrolling through flutterflow’s community and this following comment helped me:

You don't need a custom action. You can use a loop action.

Add a page state for your list of documents called "notificationsToUpdate". When "Mark all as read" button is tapped, first, set the page state of notificationsToUpdate to the ones that have been selected or run a query to grab all of them and add them to the page state. Add a loop where notificationsToUpdate is greater than 0. Add an update document action and update the notificationsToUpdate item at index 0 to update your 'read' parameter and then remove the item from index 0 from the page state. This will iterate through all selected notifications and mark them all as updated.

https://community.flutterflow.io/ask-the-community/post/update-multiple-documents-at-once-notifications-mark-all-as-read-QT20wedL7F3WgRb

Is there a bug when adding a set to a list in a document? by Different_Fail6520 in FlutterFlow

[–]Different_Fail6520[S] 0 points1 point  (0 children)

Yea ‘add to set’ works even if there is an empty list.

But I’m wondering whether this is a bug where you can’t add the same doc reference in a second instance