Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5b0de6d6
Unverified
Commit
5b0de6d6
authored
Oct 30, 2018
by
Ian Hickson
Committed by
GitHub
Oct 30, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update templates (#23698)
Removes some `new`s and other minor cleanup.
parent
3449edf2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
36 deletions
+38
-36
widget_test.dart.tmpl
...es/flutter_tools/templates/app/test/widget_test.dart.tmpl
+8
-7
main.dart.tmpl
.../flutter_tools/templates/module/common/lib/main.dart.tmpl
+21
-21
widget_test.dart.tmpl
..._tools/templates/module/common/test/widget_test.dart.tmpl
+8
-7
projectName_test.dart.tmpl
...r_tools/templates/package/test/projectName_test.dart.tmpl
+1
-1
No files found.
packages/flutter_tools/templates/app/test/widget_test.dart.tmpl
View file @
5b0de6d6
...
...
@@ -14,7 +14,7 @@ import 'package:{{projectName}}/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(
new
MyApp());
await tester.pumpWidget(MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
...
...
@@ -34,15 +34,16 @@ void main() {
void main() {
testWidgets('Verify Platform version', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(
new
MyApp());
await tester.pumpWidget(MyApp());
// Verify that platform version is retrieved.
expect(
find.byWidgetPredicate(
(Widget widget) =>
widget is Text && widget.data.startsWith('Running on:'),
),
findsOneWidget);
find.byWidgetPredicate(
(Widget widget) => widget is Text &&
widget.data.startsWith('Running on:'),
),
findsOneWidget,
);
});
}
{{/withPluginHook}}
packages/flutter_tools/templates/module/common/lib/main.dart.tmpl
View file @
5b0de6d6
...
...
@@ -10,14 +10,14 @@ import 'package:{{pluginProjectName}}/{{pluginProjectName}}.dart';
{{/withPluginHook}}
{{^withDriverTest}}
void main() => runApp(
new
MyApp());
void main() => runApp(MyApp());
{{/withDriverTest}}
{{#withDriverTest}}
void main() {
// Enable integration testing with the Flutter Driver extension.
// See https://flutter.io/testing/ for more info.
enableFlutterDriverExtension();
runApp(
new
MyApp());
runApp(MyApp());
}
{{/withDriverTest}}
...
...
@@ -26,9 +26,9 @@ class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return
new
MaterialApp(
return MaterialApp(
title: 'Flutter Demo',
theme:
new
ThemeData(
theme: ThemeData(
// This is the theme of your application.
//
// Try running your application with "flutter run". You'll see the
...
...
@@ -39,7 +39,7 @@ class MyApp extends StatelessWidget {
// counter didn't reset back to zero; the application is not restarted.
primarySwatch: Colors.blue,
),
home:
new
MyHomePage(title: 'Flutter Demo Home Page'),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
...
...
@@ -59,7 +59,7 @@ class MyHomePage extends StatefulWidget {
final String title;
@override
_MyHomePageState createState() =>
new
_MyHomePageState();
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
...
...
@@ -84,16 +84,16 @@ class _MyHomePageState extends State<MyHomePage> {
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return
new
Scaffold(
appBar:
new
AppBar(
return Scaffold(
appBar: AppBar(
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title:
new
Text(widget.title),
title: Text(widget.title),
),
body:
new
Center(
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child:
new
Column(
child: Column(
// Column is also layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
...
...
@@ -109,20 +109,20 @@ class _MyHomePageState extends State<MyHomePage> {
// horizontal).
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new
Text(
Text(
'You have pushed the button this many times:',
),
new
Text(
Text(
'$_counter',
style: Theme.of(context).textTheme.display1,
),
],
),
),
floatingActionButton:
new
FloatingActionButton(
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child:
new
Icon(Icons.add),
child: Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
}
...
...
@@ -131,7 +131,7 @@ class _MyHomePageState extends State<MyHomePage> {
{{#withPluginHook}}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() =>
new
_MyAppState();
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
...
...
@@ -165,13 +165,13 @@ class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return
new
MaterialApp(
home:
new
Scaffold(
appBar:
new
AppBar(
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body:
new
Center(
child:
new
Text('Running on: $_platformVersion\n'),
body: Center(
child: Text('Running on: $_platformVersion\n'),
),
),
);
...
...
packages/flutter_tools/templates/module/common/test/widget_test.dart.tmpl
View file @
5b0de6d6
...
...
@@ -14,7 +14,7 @@ import 'package:{{projectName}}/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(
new
MyApp());
await tester.pumpWidget(MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
...
...
@@ -34,15 +34,16 @@ void main() {
void main() {
testWidgets('Verify Platform version', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(
new
MyApp());
await tester.pumpWidget(MyApp());
// Verify that platform version is retrieved.
expect(
find.byWidgetPredicate(
(Widget widget) =>
widget is Text && widget.data.startsWith('Running on:'),
),
findsOneWidget);
find.byWidgetPredicate(
(Widget widget) => widget is Text &&
widget.data.startsWith('Running on:'),
),
findsOneWidget,
);
});
}
{{/withPluginHook}}
packages/flutter_tools/templates/package/test/projectName_test.dart.tmpl
View file @
5b0de6d6
...
...
@@ -4,7 +4,7 @@ import 'package:{{projectName}}/{{projectName}}.dart';
void main() {
test('adds one to input values', () {
final calculator =
new
Calculator();
final calculator = Calculator();
expect(calculator.addOne(2), 3);
expect(calculator.addOne(-7), -6);
expect(calculator.addOne(0), 1);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment