Unverified Commit d0fb2929 authored by ufolux's avatar ufolux Committed by GitHub

fix: unexpected chinese punctuation (#143678)

*Fixed the issue with abnormal Chinese punctuation marks.*
parent d3b60d46
...@@ -390,7 +390,7 @@ class Opacity extends SingleChildRenderObjectWidget { ...@@ -390,7 +390,7 @@ class Opacity extends SingleChildRenderObjectWidget {
/// ).createShader(bounds); /// ).createShader(bounds);
/// }, /// },
/// child: const Text( /// child: const Text(
/// 'I’m burning the memories', /// "I'm burning the memories",
/// style: TextStyle(color: Colors.white), /// style: TextStyle(color: Colors.white),
/// ), /// ),
/// ) /// )
...@@ -5034,8 +5034,8 @@ class Row extends Flex { ...@@ -5034,8 +5034,8 @@ class Row extends Flex {
/// const Text('Through the night, we have one shot to live another day'), /// 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 cannot let a stray gunshot give us away'),
/// const Text('We will fight up close, seize the moment and stay in it'), /// 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("It's either that or meet the business end of a bayonet"),
/// const Text('The code word is ‘Rochambeau,’ dig me?'), /// const Text("The code word is 'Rochambeau,' dig me?"),
/// Text('Rochambeau!', style: DefaultTextStyle.of(context).style.apply(fontSizeFactor: 2.0)), /// Text('Rochambeau!', style: DefaultTextStyle.of(context).style.apply(fontSizeFactor: 2.0)),
/// ], /// ],
/// ) /// )
......
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