Unverified Commit 3ed6b206 authored by Jason Simmons's avatar Jason Simmons Committed by GitHub

Fix text escaping in the AboutListTile sample code (#62707)

parent 4a4e9bad
...@@ -61,7 +61,7 @@ import 'theme.dart'; ...@@ -61,7 +61,7 @@ import 'theme.dart';
/// children: <TextSpan>[ /// children: <TextSpan>[
/// TextSpan( /// TextSpan(
/// style: textStyle, /// 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 ' /// 'natively compiled applications for mobile, web, and desktop '
/// 'from a single codebase. Learn more about Flutter at ' /// 'from a single codebase. Learn more about Flutter at '
/// ), /// ),
...@@ -90,7 +90,7 @@ import 'theme.dart'; ...@@ -90,7 +90,7 @@ import 'theme.dart';
/// applicationIcon: FlutterLogo(), /// applicationIcon: FlutterLogo(),
/// applicationName: 'Show About Example', /// applicationName: 'Show About Example',
/// applicationVersion: 'August 2019', /// applicationVersion: 'August 2019',
/// applicationLegalese: '© 2014 The Flutter Authors', /// applicationLegalese: '\u{a9} 2014 The Flutter Authors',
/// aboutBoxChildren: aboutBoxChildren, /// aboutBoxChildren: aboutBoxChildren,
/// ), /// ),
/// ), /// ),
...@@ -105,7 +105,7 @@ import 'theme.dart'; ...@@ -105,7 +105,7 @@ import 'theme.dart';
/// applicationIcon: FlutterLogo(), /// applicationIcon: FlutterLogo(),
/// applicationName: 'Show About Example', /// applicationName: 'Show About Example',
/// applicationVersion: 'August 2019', /// applicationVersion: 'August 2019',
/// applicationLegalese: '© 2014 The Flutter Authors', /// applicationLegalese: '\u{a9} 2014 The Flutter Authors',
/// children: aboutBoxChildren, /// children: aboutBoxChildren,
/// ); /// );
/// }, /// },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment