Convert string that include `'` in them to double quouted strings

This commit is contained in:
krawieck 2020-08-31 19:58:09 +02:00
parent eee965fba1
commit e22a3094e4
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class MarkdownText extends StatelessWidget {
content: Row(
children: [
Icon(Icons.warning),
Text('couldn\'t open link'),
Text("couldn't open link"),
],
),
)));
@ -29,7 +29,7 @@ class MarkdownText extends StatelessWidget {
errorWidget: (context, url, error) => Row(
children: [
Icon(Icons.warning),
Text('couldn\'t load image, ${error.toString()}')
Text("couldn't load image, ${error.toString()}")
],
),
),