flutter/dev
Taha Tesser 0bcd228e67
Update TabBar and TabBar.secondary to use indicator height/color M3 tokens (#145753)
fixes [Secondary `TabBar` indicator height token is missing ](https://github.com/flutter/flutter/issues/124965)

### Code sample

<details>
<summary>expand to view the code sample</summary> 

```dart
import 'package:flutter/material.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: DefaultTabController(
        length: 2,
        child: Scaffold(
          appBar: AppBar(
            title: const Text('Sample'),
            bottom: const TabBar.secondary(
              tabs: <Widget>[
                Tab(icon: Icon(Icons.directions_car)),
                Tab(icon: Icon(Icons.directions_transit)),
              ],
            ),
          ),
          floatingActionButton: FloatingActionButton(
            onPressed: () {},
            child: const Icon(Icons.add),
          ),
        ),
      ),
    );
  }
}
```

</details>
2024-03-28 17:56:09 +00:00
..
a11y_assessments Roll pub packages (#145476) 2024-03-21 00:09:24 +00:00
automated_tests Roll pub packages (#145476) 2024-03-21 00:09:24 +00:00
benchmarks Roll pub packages and regenerate gradle lockfiles (#145727) 2024-03-26 22:07:06 +00:00
bots Refactor web long running tests (#145776) 2024-03-27 15:32:17 +00:00
conductor Roll pub packages (#145476) 2024-03-21 00:09:24 +00:00
customer_testing Roll pub packages (#145476) 2024-03-21 00:09:24 +00:00
devicelab Reland #128236 "Improve build output for all platforms" (#145495) 2024-03-23 12:05:21 +00:00
docs Remove master from API docs (#144425) 2024-03-01 01:06:56 +00:00
forbidden_from_release_tests Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
integration_tests [web] Add BackgroundIsolateBinaryMessenger.ensureInitialized to web. (#145786) 2024-03-26 23:51:23 +00:00
manual_tests Intensive if chain refactoring (#145194) 2024-03-22 13:55:06 +00:00
missing_dependency_tests Enable private field promotion for dev (#134480) 2023-09-12 18:29:00 +00:00
snippets/config Reland "Use dartpad's main channel for master/main docs (#144329)" (#144431) 2024-02-29 23:10:53 +00:00
tools Update TabBar and TabBar.secondary to use indicator height/color M3 tokens (#145753) 2024-03-28 17:56:09 +00:00
tracing_tests Roll pub packages (#145476) 2024-03-21 00:09:24 +00:00
analysis_options.yaml Enable more lints (#91642) 2021-10-14 22:03:03 -07:00
README.md Migrate to .ci.yaml (#82960) 2021-05-19 20:09:46 -07:00

This directory contains tools and resources that the Flutter team uses during the development of the framework. The tools in this directory should not be necessary for developing Flutter applications, though of course, they may be interesting if you are curious.

The tests in this directory are run in the framework_tests_misc-* shards.