flutter/examples/api/lib/material/tab_controller/tab_controller.1.dart
Michael Goderbauer 5491c8c146
Auto-format Framework (#160545)
This auto-formats all *.dart files in the repository outside of the
`engine` subdirectory and enforces that these files stay formatted with
a presubmit check.

**Reviewers:** Please carefully review all the commits except for the
one titled "formatted". The "formatted" commit was auto-generated by
running `dev/tools/format.sh -a -f`. The other commits were hand-crafted
to prepare the repo for the formatting change. I recommend reviewing the
commits one-by-one via the "Commits" tab and avoiding Github's "Files
changed" tab as it will likely slow down your browser because of the
size of this PR.

---------

Co-authored-by: Kate Lovett <katelovett@google.com>
Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
2024-12-19 20:06:21 +00:00

113 lines
3.0 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 [TabController].
void main() => runApp(const TabControllerExampleApp());
class TabControllerExampleApp extends StatelessWidget {
const TabControllerExampleApp({super.key});
static const List<Tab> tabs = <Tab>[Tab(text: 'Zeroth'), Tab(text: 'First'), Tab(text: 'Second')];
@override
Widget build(BuildContext context) {
return const MaterialApp(home: TabControllerExample(tabs: tabs));
}
}
class TabControllerExample extends StatelessWidget {
const TabControllerExample({required this.tabs, super.key});
final List<Tab> tabs;
@override
Widget build(BuildContext context) {
return DefaultTabController(
length: tabs.length,
child: DefaultTabControllerListener(
onTabChanged: (int index) {
debugPrint('tab changed: $index');
},
child: Scaffold(
appBar: AppBar(bottom: TabBar(tabs: tabs)),
body: TabBarView(
children:
tabs.map((Tab tab) {
return Center(
child: Text(
'${tab.text!} Tab',
style: Theme.of(context).textTheme.headlineSmall,
),
);
}).toList(),
),
),
),
);
}
}
class DefaultTabControllerListener extends StatefulWidget {
const DefaultTabControllerListener({required this.onTabChanged, required this.child, super.key});
final ValueChanged<int> onTabChanged;
final Widget child;
@override
State<DefaultTabControllerListener> createState() => _DefaultTabControllerListenerState();
}
class _DefaultTabControllerListenerState extends State<DefaultTabControllerListener> {
TabController? _controller;
@override
void didChangeDependencies() {
super.didChangeDependencies();
final TabController? defaultTabController = DefaultTabController.maybeOf(context);
assert(() {
if (defaultTabController == null) {
throw FlutterError(
'No DefaultTabController for ${widget.runtimeType}.\n'
'When creating a ${widget.runtimeType}, you must ensure that there '
'is a DefaultTabController above the ${widget.runtimeType}.',
);
}
return true;
}());
if (defaultTabController != _controller) {
_controller?.removeListener(_listener);
_controller = defaultTabController;
_controller?.addListener(_listener);
}
}
void _listener() {
final TabController? controller = _controller;
if (controller == null || controller.indexIsChanging) {
return;
}
widget.onTabChanged(controller.index);
}
@override
void dispose() {
_controller?.removeListener(_listener);
super.dispose();
}
@override
Widget build(BuildContext context) {
return widget.child;
}
}