Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
d0fb2929
Unverified
Commit
d0fb2929
authored
Feb 27, 2024
by
ufolux
Committed by
GitHub
Feb 27, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: unexpected chinese punctuation (#143678)
*Fixed the issue with abnormal Chinese punctuation marks.*
parent
d3b60d46
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+3
-3
No files found.
packages/flutter/lib/src/widgets/basic.dart
View file @
d0fb2929
...
@@ -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)),
/// ],
/// ],
/// )
/// )
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment