From 676202ae0269dc30d1c417b383c547cbdf936d75 Mon Sep 17 00:00:00 2001 From: rydmike Date: Sun, 3 Nov 2024 23:45:50 +0200 Subject: [PATCH] Playground: ListTile known issues text update --- .../widgets/panels/list_tile/list_tile_panel.dart | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/example/lib/example5_themes_playground/widgets/panels/list_tile/list_tile_panel.dart b/example/lib/example5_themes_playground/widgets/panels/list_tile/list_tile_panel.dart index 47971c8a8..6cd319431 100644 --- a/example/lib/example5_themes_playground/widgets/panels/list_tile/list_tile_panel.dart +++ b/example/lib/example5_themes_playground/widgets/panels/list_tile/list_tile_panel.dart @@ -227,26 +227,28 @@ class ListTilePanel extends StatelessWidget { TextSpan( style: spanTextStyle, text: 'The minVertical padding is lowest at 4 not at 0 ' - 'This is a bug in Flutter SDK. For more information see ', + 'This may be a bug in Flutter SDK. It will be studied ' + 'and reported as an ', ), LinkTextSpan( style: linkStyle, uri: _lisTilePlaceholderIssue, - text: 'issue #NNNNN', + text: 'issue', ), TextSpan( style: spanTextStyle, - text: '. The ListTileStyle theme property has no effect, ' - 'see ', + text: ' if it is. The ListTileStyle theme property has no ' + 'effect, this may also be a bug in Flutter SDK. It will ' + 'be studied and reported as an ', ), LinkTextSpan( style: linkStyle, uri: _lisTilePlaceholderIssue, - text: 'issue #NNNNN', + text: 'issue', ), TextSpan( style: spanTextStyle, - text: '.\n', + text: ' if it is one.\n', ), ], ),