Skip to content

Commit

Permalink
fix: unexpected chinese punctuation (flutter#143678)
Browse files Browse the repository at this point in the history
*Fixed the issue with abnormal Chinese punctuation marks.*
  • Loading branch information
ufolux authored Feb 27, 2024
1 parent d3b60d4 commit d0fb292
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/flutter/lib/src/widgets/basic.dart
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class Opacity extends SingleChildRenderObjectWidget {
/// ).createShader(bounds);
/// },
/// child: const Text(
/// 'I’m burning the memories',
/// "I'm burning the memories",
/// style: TextStyle(color: Colors.white),
/// ),
/// )
Expand Down Expand Up @@ -5034,8 +5034,8 @@ class Row extends Flex {
/// const Text('Through the night, we have one shot to live another day'),
/// const Text('We cannot let a stray gunshot give us away'),
/// const Text('We will fight up close, seize the moment and stay in it'),
/// const Text('It’s either that or meet the business end of a bayonet'),
/// const Text('The code word is Rochambeau, dig me?'),
/// const Text("It's either that or meet the business end of a bayonet"),
/// const Text("The code word is 'Rochambeau,' dig me?"),
/// Text('Rochambeau!', style: DefaultTextStyle.of(context).style.apply(fontSizeFactor: 2.0)),
/// ],
/// )
Expand Down

0 comments on commit d0fb292

Please sign in to comment.