Skip to content

Commit 801aff7

Browse files
committed
why I cannot debug, why
1 parent 81b4cbb commit 801aff7

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

lib/util/util.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const String GPLv3 = """
4444
GNU GENERAL PUBLIC LICENSE
4545
Version 3, 29 June 2007
4646
47-
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
47+
Copyright (C) 2007 Free Software Foundation, Inc.
4848
Everyone is permitted to copy and distribute verbatim copies
4949
of this license document, but changing it is not allowed.
5050
""";

lib/view/main.dart

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import 'package:code_wars_android/view/settings.dart';
77
import 'package:flutter/material.dart';
88
import 'package:shared_preferences/shared_preferences.dart';
99

10-
1110
// ignore: must_be_immutable
1211
class MyApplication extends StatelessWidget {
1312
var mainTitle = 'Code Wars';
@@ -215,6 +214,7 @@ class _MainActivityState extends State<MainActivity>
215214
title: new Text("Completed", style: new TextStyle(
216215
color: CodeWarsColors.red.shade400, fontSize: 20.0))),
217216
]));
217+
// _kata.child = new Scrollbar(child: new ListView());
218218
return new Scaffold(
219219
key: _scaffoldKey,
220220
appBar: new AppBar(
@@ -236,14 +236,11 @@ class _MainActivityState extends State<MainActivity>
236236
tooltip: 'Show explanation',
237237
backgroundColor: _selectedPage.fabColor,
238238
child: _selectedPage.createIcon,
239-
onPressed: _selectedPage.onClick ?? _showExplanatoryText
240-
),
239+
onPressed: _selectedPage.onClick ?? _showExplanatoryText),
241240
body: new TabBarView(
242241
controller: _tabController,
243242
children: _allPages
244243
.map(buildTabView)
245-
.toList()
246-
),
247-
);
244+
.toList()),);
248245
}
249246
}

0 commit comments

Comments
 (0)