Huy fa41ee32cb
Add TabBar API example for scroll notification integration (#180728)
- A part of: https://github.com/flutter/flutter/issues/123965
- Description: This PR adds an example that came from
https://github.com/flutter/flutter/issues/123965#issuecomment-3722456594
as a workaround. I bring it into an API example so that users can find
it easier.
The example showcases how to apply custom behavior based on the scroll
in TabBar. It utilizes scroll notifications (ScrollMetricsNotification
and ScrollNotification) within NotificationListener callback to monitor
the scroll offset, allowing for interface customization based on the
obtained offset.

<details open>
<summary>Demo</summary>


https://github.com/user-attachments/assets/75999f31-e468-4bba-9c14-bf4f3c8fcd9a

</details>

## Pre-launch Checklist

- [x] I read the [Contributor Guide] and followed the process outlined
there for submitting PRs.
- [x] I read the [Tree Hygiene] wiki page, which explains my
responsibilities.
- [x] I read and followed the [Flutter Style Guide], including [Features
we expect every widget to implement].
- [x] I signed the [CLA].
- [x] I listed at least one issue that this PR fixes in the description
above.
- [x] I updated/added relevant documentation (doc comments with `///`).
- [x] I added new tests to check the change I am making, or this PR is
[test-exempt].
- [x] I followed the [breaking change policy] and added [Data Driven
Fixes] where supported.
- [x] All existing and new tests are passing.

If you need help, consider asking for advice on the #hackers-new channel
on [Discord].

**Note**: The Flutter team is currently trialing the use of [Gemini Code
Assist for
GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code).
Comments from the `gemini-code-assist` bot should not be taken as
authoritative feedback from the Flutter team. If you find its comments
useful you can update your code accordingly, but if you are unsure or
disagree with the feedback, please feel free to wait for a Flutter team
member's review for guidance on which automated comments should be
addressed.

<!-- Links -->
[Contributor Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#overview
[Tree Hygiene]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md
[test-exempt]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#tests
[Flutter Style Guide]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md
[Features we expect every widget to implement]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Style-guide-for-Flutter-repo.md#features-we-expect-every-widget-to-implement
[CLA]: https://cla.developers.google.com/
[flutter/tests]: https://github.com/flutter/tests
[breaking change policy]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Tree-hygiene.md#handling-breaking-changes
[Discord]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Chat.md
[Data Driven Fixes]:
https://github.com/flutter/flutter/blob/main/docs/contributing/Data-driven-Fixes.md

---------

Signed-off-by: huycozy <huy@nevercode.io>
2026-01-13 16:07:02 +00:00

193 lines
5.5 KiB
Dart

// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
/// Flutter code sample for a [TabBar] that displays custom effects on top of
/// the tab bar itself when there are more tabs in the scroll direction.
void main() => runApp(const TabBarApp());
class TabBarApp extends StatelessWidget {
const TabBarApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(home: TabBarExample());
}
}
class TabBarExample extends StatefulWidget {
const TabBarExample({super.key});
@override
State<TabBarExample> createState() => _TabBarExampleState();
}
class _TabBarExampleState extends State<TabBarExample> {
double scrollOffset = 0;
double maxScrollExtent = 0;
@override
Widget build(BuildContext context) {
return DefaultTabController(
length: 20,
child: Scaffold(
appBar: AppBar(
title: const Text('TabBar with scroll notifications'),
bottom: PreferredSize(
preferredSize: const Size.fromHeight(56.0),
child: NotificationListener<Notification>(
onNotification: (Notification notification) {
// ScrollMetricsNotification is for initial layout.
// ScrollNotification is for real-time scroll updates.
final ScrollMetrics? metrics = switch (notification) {
ScrollMetricsNotification(:final metrics) => metrics,
ScrollNotification(:final metrics) => metrics,
_ => null,
};
if (metrics != null) {
setState(() {
scrollOffset = metrics.pixels;
maxScrollExtent = metrics.maxScrollExtent;
});
}
return false;
},
child: Stack(
children: [
TabBar(
isScrollable: true,
tabs: List<Widget>.generate(
20,
(int index) => Tab(text: 'Tab $index'),
),
),
// When the selected tab is not at the beginning or end
// (indicating TabBar is scrollable), add a gradient mask
// to left or right.
Positioned(
top: 0,
bottom: 0,
left: 0,
right: 0,
child: GradientMasks(
scrollOffset: scrollOffset,
maxScrollExtent: maxScrollExtent,
),
),
],
),
),
),
),
),
);
}
}
class GradientMasks extends StatelessWidget {
final double scrollOffset;
final double maxScrollExtent;
const GradientMasks({
super.key,
required this.scrollOffset,
required this.maxScrollExtent,
});
@override
Widget build(BuildContext context) {
return Row(
children: [
if (scrollOffset > 0) const LeftMask(),
const Spacer(),
if (scrollOffset < maxScrollExtent) const RightMask(),
],
);
}
}
/// This mask shows when the selected tab is not at the beginning.
class LeftMask extends StatelessWidget {
const LeftMask({super.key});
@override
Widget build(BuildContext context) {
return IgnorePointer(
child: ClipRect(
child: BackdropFilter(
filter: ColorFilter.mode(
Colors.black.withValues(alpha: 0.2),
BlendMode.srcOver,
),
child: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerLeft,
end: Alignment.centerRight,
colors: [
Colors.white.withValues(alpha: 0.8),
Colors.white.withValues(alpha: 0.2),
],
),
),
child: Align(
alignment: Alignment.centerLeft,
child: Padding(
padding: EdgeInsets.only(left: 4),
child: Icon(
Icons.chevron_left,
color: Colors.black.withValues(alpha: 0.4),
),
),
),
),
),
),
);
}
}
/// This mask shows when the selected tab is not at the end.
class RightMask extends StatelessWidget {
const RightMask({super.key});
@override
Widget build(BuildContext context) {
return IgnorePointer(
child: ClipRect(
child: BackdropFilter(
filter: ColorFilter.mode(
Colors.black.withValues(alpha: 0.2),
BlendMode.srcOver,
),
child: Container(
decoration: BoxDecoration(
gradient: LinearGradient(
begin: Alignment.centerRight,
end: Alignment.centerLeft,
colors: [
Colors.white.withValues(alpha: 0.8),
Colors.white.withValues(alpha: 0.2),
],
),
),
child: Align(
alignment: Alignment.centerRight,
child: Padding(
padding: EdgeInsets.only(right: 4),
child: Icon(
Icons.chevron_right,
color: Colors.black.withValues(alpha: 0.4),
),
),
),
),
),
),
);
}
}