質問編集履歴

3

誤字

2023/03/10 15:11

投稿

piko_piko_head
piko_piko_head

スコア5

test CHANGED
File without changes
test CHANGED
@@ -70,7 +70,7 @@
70
70
  TextButton(onPressed: () async {
71
71
  launchUrl('mailto:${mailAddress}?subject=${mailTitle}&body=${mailContents}');
72
72
  }, child: Icon(Icons.mail))]),
73
- Row(children: [Text('WebSite:'), Text('http://more.com')]),
73
+ Row(children: [Text('WebSite:'), Text('http://hoge.com')]),
74
74
  ],
75
75
  ),
76
76
  ),

2

書式の改善

2023/03/10 15:10

投稿

piko_piko_head
piko_piko_head

スコア5

test CHANGED
File without changes
test CHANGED
@@ -9,7 +9,7 @@
9
9
  書籍の中で掲示されているサンプルコードがエラーになってしまい、対処法がわからず困っております。
10
10
 
11
11
  ### 発生している問題・エラーメッセージ
12
- ```
12
+ ```Dart
13
13
  : Error: The argument type 'Uri' can't be assigned to the parameter type 'String'.
14
14
  main.dart:17
15
15
  - 'Uri' is from 'dart:core'.
@@ -27,7 +27,7 @@
27
27
 
28
28
  ### 該当のソースコード
29
29
 
30
- ```Flutter
30
+ ```Dart
31
31
  import 'package:flutter/material.dart';
32
32
  import 'package:url_launcher/url_launcher.dart';
33
33
  import 'package:url_launcher/link.dart';

1

誤字修正

2023/03/10 15:06

投稿

piko_piko_head
piko_piko_head

スコア5

test CHANGED
File without changes
test CHANGED
@@ -66,7 +66,7 @@
66
66
  Row(children: [Text('電話:'), Text('090-0000-0000')]),
67
67
  Row(children: [
68
68
  Text('メール:'),
69
- Text('more@ne.jp'),
69
+ Text('hoge@ne.jp'),
70
70
  TextButton(onPressed: () async {
71
71
  launchUrl('mailto:${mailAddress}?subject=${mailTitle}&body=${mailContents}');
72
72
  }, child: Icon(Icons.mail))]),