質問編集履歴
1
ソースコードを詳細なものに変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,15 @@
|
|
24
24
|
|
25
25
|
```ここに言語名を入力
|
26
26
|
|
27
|
+
child: Row(
|
28
|
+
|
29
|
+
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
30
|
+
|
31
|
+
children: <Widget>[
|
32
|
+
|
33
|
+
Icon(Icons.search, color: Color(0xff999999)),
|
34
|
+
|
27
|
-
TextFormField(
|
35
|
+
TextFormField(
|
28
36
|
|
29
37
|
maxLines: 1,
|
30
38
|
|
@@ -40,6 +48,8 @@
|
|
40
48
|
|
41
49
|
),
|
42
50
|
|
51
|
+
]),
|
52
|
+
|
43
53
|
|
44
54
|
|
45
55
|
```
|