From 3ed6b206d25f74d41cca0cf090c968e4a7e99ae4 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Tue, 4 Aug 2020 13:36:05 -0700 Subject: [PATCH] Fix text escaping in the AboutListTile sample code (#62707) --- packages/flutter/lib/src/material/about.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/flutter/lib/src/material/about.dart b/packages/flutter/lib/src/material/about.dart index 64a512dc31..1ccae57f82 100644 --- a/packages/flutter/lib/src/material/about.dart +++ b/packages/flutter/lib/src/material/about.dart @@ -61,7 +61,7 @@ import 'theme.dart'; /// children: [ /// TextSpan( /// style: textStyle, -/// text: 'Flutter is Google’s UI toolkit for building beautiful, ' +/// text: "Flutter is Google's UI toolkit for building beautiful, " /// 'natively compiled applications for mobile, web, and desktop ' /// 'from a single codebase. Learn more about Flutter at ' /// ), @@ -90,7 +90,7 @@ import 'theme.dart'; /// applicationIcon: FlutterLogo(), /// applicationName: 'Show About Example', /// applicationVersion: 'August 2019', -/// applicationLegalese: '© 2014 The Flutter Authors', +/// applicationLegalese: '\u{a9} 2014 The Flutter Authors', /// aboutBoxChildren: aboutBoxChildren, /// ), /// ), @@ -105,7 +105,7 @@ import 'theme.dart'; /// applicationIcon: FlutterLogo(), /// applicationName: 'Show About Example', /// applicationVersion: 'August 2019', -/// applicationLegalese: '© 2014 The Flutter Authors', +/// applicationLegalese: '\u{a9} 2014 The Flutter Authors', /// children: aboutBoxChildren, /// ); /// },