flutter/packages/flutter
Taha Tesser cfabdca9ca
Fix chips use square delete button InkWell shape instead of circular (#144319)
fixes [Chips delete button hover style is square, not circular](https://github.com/flutter/flutter/issues/141335)

### Code sample

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

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

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body: Center(
          child: RawChip(
            label: const Text('Test'),
            onPressed: null,
            deleteIcon: const Icon(Icons.clear, size: 18),
            onDeleted: () {},
          ),
        ),
      ),
    );
  }
}
```

</details>

### Preview

| Before | After |
| --------------- | --------------- |
| <img src="https://github.com/flutter/flutter/assets/48603081/c5d62c57-97b3-4f94-b83d-df13559ee3a8" /> | <img src="https://github.com/flutter/flutter/assets/48603081/b76edaab-73e0-4aa9-8ca2-127eedd77814"  /> |
2024-03-01 12:02:07 +00:00
..
lib Fix chips use square delete button InkWell shape instead of circular (#144319) 2024-03-01 12:02:07 +00:00
test Fix chips use square delete button InkWell shape instead of circular (#144319) 2024-03-01 12:02:07 +00:00
test_fixes Reland "Reland - Introduce tone-based surfaces and accent color add-ons - Part 2" (#144273) 2024-02-28 13:55:50 -08:00
test_private Upgrade leak_tracker. (#143236) 2024-02-09 14:41:22 -08:00
test_profile Fix typos (#121171) 2023-02-23 19:43:21 +00:00
test_release Rename MemoryAllocations to FlutterMemoryAllocations. (#140623) 2024-01-02 09:56:30 -08:00
analysis_options.yaml
build.yaml
dart_test.yaml
LICENSE
pubspec.yaml [web] Move JS interop to extension types (#143274) 2024-02-12 11:14:10 -08:00
README.md

Flutter

Flutter is a new way to build high-performance, cross-platform mobile, web, and desktop apps. Flutter is optimized for today's — and tomorrow's — mobile and desktop devices. We are focused on low-latency input and high frame rates on all platforms.

See the getting started guide for information about using Flutter.