TheAlphamerc / flutter_twitter_clone

Fully functional Twitter clone built in flutter framework using Firebase realtime database and storage
MIT License
3.75k stars 1.06k forks source link

Search feature #247

Open JavierPerezLavadie opened 2 years ago

JavierPerezLavadie commented 2 years ago

Hey, congratulations on your work on Fwitter. I have a question, Firebase does not support full text search. How did you do the search functionality?

Thanks

https://firebase.google.com/docs/firestore/solutions/search

TheAlphamerc commented 2 years ago

Yes, you are right firebase does not provide that kind of search functionality. The search functionality in Fwitter uses search operation on data that is available in-app.

JavierPerezLavadie commented 2 years ago

It can help https://medium.flutterdevs.com/implement-searching-with-firebase-firestore-flutter-de7ebd53c8c9

TheAlphamerc commented 2 years ago

@JavierPerezLavadie Thanks for sharing. It might help in search implementation.