mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
113 lines
3.5 KiB
Dart
113 lines
3.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 [AppBar].
|
|
|
|
List<String> titles = <String>[
|
|
'Cloud',
|
|
'Beach',
|
|
'Sunny',
|
|
];
|
|
|
|
void main() => runApp(const AppBarApp());
|
|
|
|
class AppBarApp extends StatelessWidget {
|
|
const AppBarApp({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
theme: ThemeData(colorSchemeSeed: const Color(0xff6750a4), useMaterial3: true),
|
|
home: const AppBarExample(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class AppBarExample extends StatelessWidget {
|
|
const AppBarExample({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final ColorScheme colorScheme = Theme.of(context).colorScheme;
|
|
final Color oddItemColor = colorScheme.primary.withOpacity(0.05);
|
|
final Color evenItemColor = colorScheme.primary.withOpacity(0.15);
|
|
const int tabsCount = 3;
|
|
|
|
return DefaultTabController(
|
|
initialIndex: 1,
|
|
length: tabsCount,
|
|
child: Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('AppBar Sample'),
|
|
// This check specifies which nested Scrollable's scroll notification
|
|
// should be listened to.
|
|
//
|
|
// When `ThemeData.useMaterial3` is true and scroll view has
|
|
// scrolled underneath the app bar, this updates the app bar
|
|
// background color and elevation.
|
|
//
|
|
// This sets `notification.depth == 1` to listen to the scroll
|
|
// notification from the nested `ListView.builder`.
|
|
notificationPredicate: (ScrollNotification notification) {
|
|
return notification.depth == 1;
|
|
},
|
|
// The elevation value of the app bar when scroll view has
|
|
// scrolled underneath the app bar.
|
|
scrolledUnderElevation: 4.0,
|
|
shadowColor: Theme.of(context).shadowColor,
|
|
bottom: TabBar(
|
|
tabs: <Widget>[
|
|
Tab(
|
|
icon: const Icon(Icons.cloud_outlined),
|
|
text: titles[0],
|
|
),
|
|
Tab(
|
|
icon: const Icon(Icons.beach_access_sharp),
|
|
text: titles[1],
|
|
),
|
|
Tab(
|
|
icon: const Icon(Icons.brightness_5_sharp),
|
|
text: titles[2],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
body: TabBarView(
|
|
children: <Widget>[
|
|
ListView.builder(
|
|
itemCount: 25,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
return ListTile(
|
|
tileColor: index.isOdd ? oddItemColor : evenItemColor,
|
|
title: Text('${titles[0]} $index'),
|
|
);
|
|
},
|
|
),
|
|
ListView.builder(
|
|
itemCount: 25,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
return ListTile(
|
|
tileColor: index.isOdd ? oddItemColor : evenItemColor,
|
|
title: Text('${titles[1]} $index'),
|
|
);
|
|
},
|
|
),
|
|
ListView.builder(
|
|
itemCount: 25,
|
|
itemBuilder: (BuildContext context, int index) {
|
|
return ListTile(
|
|
tileColor: index.isOdd ? oddItemColor : evenItemColor,
|
|
title: Text('${titles[2]} $index'),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|