https://github.com/astrotars/stream-flutter
Building a Social Network with Stream Activity Feeds and Flutter
https://github.com/astrotars/stream-flutter
android dart example feeds flutter flutter-examples ios stream
Last synced: 6 months ago
JSON representation
Building a Social Network with Stream Activity Feeds and Flutter
- Host: GitHub
- URL: https://github.com/astrotars/stream-flutter
- Owner: astrotars
- Created: 2019-11-22T18:41:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T00:45:30.000Z (over 5 years ago)
- Last Synced: 2025-07-27T03:02:08.317Z (6 months ago)
- Topics: android, dart, example, feeds, flutter, flutter-examples, ios, stream
- Homepage: https://github.com/nparsons08/stream-flutter
- Size: 1.59 MB
- Stars: 19
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stream Flutter: Building a Social Network with Stream and Flutter
In this post, we'll be creating a simple social network, called Stream Flutter, that allows a user to post messages to followers, chat either 1-on-1 or in groups.
Stream's [Activity Feed API](https://getstream.io/activity-feeds/) and [Chat API](https://getstream.io/chat) combined with Google's [Flutter](https://flutter.dev/) makes it straightforward to build this sort of complex interaction. All source code for this application is available on [GitHub](https://github.com/nparsons08/flutter_the_stream). This application is fully functional on both iOS and Android.
For brevity, when we need to drop down to native code, we'll only focus on Android (Kotlin). You can find the corresponding iOS code to see how things are implemented.
Part 3 contains the final product. If you'd like to skip the tutorials and see the end result, please see the `README.md` in the `backend` and `frontend` directories on that branch to get going. You can find each part of this series by the corresponding git branch or click a link below:
* [Part 1](https://github.com/nparsons08/stream-flutter/tree/1-social)
* [Part 2](https://github.com/nparsons08/stream-flutter/tree/2-messaging)
* [Part 3](https://github.com/nparsons08/stream-flutter/tree/3-channels)
Other implemenations:
* [Swift](https://github.com/psylinse/the-stream-swiftui/)