File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const String GPLv3 = """
4444GNU GENERAL PUBLIC LICENSE
4545Version 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""" ;
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import 'package:code_wars_android/view/settings.dart';
77import 'package:flutter/material.dart' ;
88import 'package:shared_preferences/shared_preferences.dart' ;
99
10-
1110// ignore: must_be_immutable
1211class 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}
You can’t perform that action at this time.
0 commit comments