mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
![]() fixes [Chip widget's avatar padding changing if label text is more than 1 line](https://github.com/flutter/flutter/issues/136892) ### Code sample <details> <summary>expand to view the code sample</summary> ```dart import 'package:flutter/material.dart'; List<String> strings = [ 'hello good morning', 'hello good morning hello good morning', 'hello good morning hello good morning hello good morning' ]; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({super.key}); @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: false, home: Scaffold( body: Center( child: Row( mainAxisAlignment: MainAxisAlignment.spaceEvenly, children: [ Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.center, children: [ const Text( 'avatarBoxConstraints: null \ndeleteIconBoxConstraints: null', textAlign: TextAlign.center), for (String string in strings) Padding( padding: const EdgeInsets.all(8.0), child: RawChip( label: Container( width: 150, color: Colors.amber, child: Text( string, maxLines: 3, overflow: TextOverflow.ellipsis, ), ), avatar: const Icon(Icons.settings), onDeleted: () {}, ), ), ], ), Column( mainAxisSize: MainAxisSize.min, crossAxisAlignment: CrossAxisAlignment.center, children: [ const Text( 'avatarBoxConstraints: BoxConstraints.tightForFinite() \ndeleteIconBoxConstraints: BoxConstraints.tightForFinite()', textAlign: TextAlign.center), for (String string in strings) Padding( padding: const EdgeInsets.all(8.0), child: RawChip( avatarBoxConstraints: const BoxConstraints.tightForFinite(), deleteIconBoxConstraints: const BoxConstraints.tightForFinite(), label: Container( width: 150, color: Colors.amber, child: Text( string, maxLines: 3, overflow: TextOverflow.ellipsis, ), ), avatar: const Icon(Icons.settings), onDeleted: () {}, ), ), ], ), ], ), ), ), ); } } ``` </details> ### Preview  # Example previews   |
||
---|---|---|
.. | ||
about | ||
action_buttons | ||
action_chip | ||
animated_icon | ||
app | ||
app_bar | ||
autocomplete | ||
banner | ||
bottom_app_bar | ||
bottom_navigation_bar | ||
bottom_sheet | ||
button_style | ||
button_style_button | ||
card | ||
checkbox | ||
checkbox_list_tile | ||
chip | ||
choice_chip | ||
color_scheme | ||
context_menu | ||
data_table | ||
date_picker | ||
dialog | ||
divider | ||
drawer | ||
dropdown | ||
dropdown_menu | ||
elevated_button | ||
expansion_panel | ||
expansion_tile | ||
filled_button | ||
filter_chip | ||
flexible_space_bar | ||
floating_action_button | ||
floating_action_button_location | ||
icon_button | ||
ink | ||
ink_well | ||
input_chip | ||
input_decorator | ||
list_tile | ||
material_state | ||
menu_anchor | ||
navigation_bar | ||
navigation_drawer | ||
navigation_rail | ||
outlined_button | ||
page_transitions_theme | ||
paginated_data_table | ||
platform_menu_bar | ||
popup_menu | ||
progress_indicator | ||
radio | ||
radio_list_tile | ||
range_slider | ||
refresh_indicator | ||
reorderable_list | ||
scaffold | ||
scrollbar | ||
search_anchor | ||
segmented_button | ||
selectable_region | ||
selection_area | ||
selection_container | ||
slider | ||
snack_bar | ||
stepper | ||
switch | ||
switch_list_tile | ||
tab_controller | ||
tabs | ||
text_button | ||
text_field | ||
text_form_field | ||
theme | ||
theme_data | ||
time_picker | ||
toggle_buttons | ||
tooltip |