docs(repo): rebuild the tutorial example on StreamChannelPage - #2916
Draft
VelikovPetar wants to merge 2 commits into
Draft
docs(repo): rebuild the tutorial example on StreamChannelPage#2916VelikovPetar wants to merge 2 commits into
StreamChannelPage#2916VelikovPetar wants to merge 2 commits into
Conversation
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
|
Important Draft PR not reviewedDraft PRs are not automatically reviewed by default.
To automatically review draft PRs, update your CodeRabbit configuration: reviews:
auto_review:
drafts: trueThanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Linear: FLU-726
Github Issue: #
CLA
Description of the pull request
Follow-up to the website change that moved Path B of the Flutter Chat tutorial onto
StreamChannelPage(GetStream/getstream.io#433).tutorial_part_1..6.dartimplemented the tutorial as six standalone single-file apps. The tutorial is now two files plus theming and one component-slot override, so the example mirrors that:The three entry points differ only in
MyApp, which is the point: theming and component overrides are bothMyAppchanges. Each keeps the runnable-per-step property of the old files:Notes on the shape:
channel_page.dart/thread_page.dartequivalent.StreamChannelPagehardcodesthreadBuildertoStreamThreadPageand exposes nothreadBuilder/onThreadTap, so a custom thread page is unreachable.StreamChannelListView.itemBuilder/StreamMessageListView.messageBuilder; the new files are component-slot based throughout, matching what the tutorial teaches and whatsample_appdoes.tutorial_client.dartexists so the bootstrap (credentials, persistence attach,connectUser) isn't triplicated. The tutorial keeps it inmain.dart; the doc comment says so.CHANGELOG.mdentry: this is example-only, with no consumer-facing SDK change (same as docs(repo): sync tutorial example with website tutorial #2746).Testing
flutter analyzeclean,dart formatclean.StreamChannelPage.Screenshots / Videos
No UI change: these files reproduce the tutorial's app, whose output was verified on-device in GetStream/getstream.io#433. The change is how the example is organized.