File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ class SocketServer {
22
22
NetworkInterface .list (type: InternetAddressType .IPv4 ).then ((interfaces) {
23
23
var ipLog = 'Possible IP addresses of this machine:' ;
24
24
interfaces.forEach ((interface ) {
25
- ipLog += '\n\t\t - ${interface .name }' ;
25
+ ipLog += '\n - ${interface .name }' ;
26
26
interface .addresses.forEach ((address) {
27
- ipLog += '\n\t\t\t\t - ${address .address }' ;
27
+ ipLog += '\n - ${address .address }' ;
28
28
});
29
29
});
30
30
_logStreamController.add (LogMessage (LogLevel .info, ipLog));
Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ class WidgetEditorTextField extends StatelessWidget {
71
71
String get label {
72
72
switch (type) {
73
73
case EditorType .positionX:
74
- return 'X\t ' ;
74
+ return 'X ' ;
75
75
case EditorType .positionY:
76
- return 'Y\t ' ;
76
+ return 'Y ' ;
77
77
case EditorType .imageSize:
78
78
return 'Image size' ;
79
79
case EditorType .fontSize:
You can’t perform that action at this time.
0 commit comments