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
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/material.dart'; | |
| typedef VisibilityReportingSliverItemBuilder<T> = | |
| Widget Function(BuildContext context, int index, T item); | |
| /// A sliver-compatible list that reports which items are currently visible | |
| /// in the viewport. | |
| /// | |
| /// `VisibilityReportingSliverList<T>` behaves like a normal [SliverList], but |
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
| name: Claude Code Review | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, ready_for_review, reopened] | |
| # Optional: Only run on specific file changes | |
| # paths: | |
| # - "src/**/*.ts" | |
| # - "src/**/*.tsx" | |
| # - "src/**/*.js" |
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
| const admin = require('firebase-admin'); | |
| admin.initializeApp({ | |
| // See https://firebase.google.com/docs/admin/setup/#initialize_the_sdk_in_non-google_environments on | |
| // how to acquire credentials for your Firebase project | |
| credential: admin.credential.cert(require("./credentials.json")) | |
| }); | |
| const updateRequest = { | |
| mobileLinksConfig: { |