Add flutter_lints (#808)

pull/833/head
Brett Morgan 4 years ago committed by GitHub
parent 6acb879dfa
commit b34cc5671a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,19 @@
include: package:flutter_lints/flutter.yaml
analyzer:
strong-mode:
implicit-casts: false
implicit-dynamic: false
linter:
rules:
avoid_types_on_closure_parameters: true
avoid_void_async: true
cancel_subscriptions: true
close_sinks: true
directives_ordering: true
package_api_docs: true
package_prefixed_library_names: true
test_types_in_equals: true
throw_in_finally: true
unnecessary_statements: true

@ -41,7 +41,7 @@ class Book {
}
abstract class FlutterBookApi {
void displayBookDetails(Book arg);
void displayBookDetails(Book book);
static void setup(FlutterBookApi api) {
{
const BasicMessageChannel<Object> channel = BasicMessageChannel<Object>(
@ -50,7 +50,7 @@ abstract class FlutterBookApi {
if (api == null) {
channel.setMessageHandler(null);
} else {
channel.setMessageHandler((Object message) async {
channel.setMessageHandler((message) async {
if (message == null) {
return;
}

@ -5,16 +5,18 @@
import 'package:flutter/material.dart';
import 'package:flutter_module_books/api.dart';
void main() => runApp(MyApp());
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: const Color(0xff6200ee),
),
home: BookDetail(),
home: const BookDetail(),
);
}
}
@ -37,7 +39,7 @@ class FlutterBookApiHandler extends FlutterBookApi {
}
class BookDetail extends StatefulWidget {
const BookDetail({this.hostApi, this.flutterApi});
const BookDetail({this.hostApi, this.flutterApi, Key key}) : super(key: key);
// These are the outgoing and incoming APIs that are here for injection for
// tests.
@ -73,7 +75,7 @@ class _BookDetailState extends State<BookDetail> {
FlutterBookApi.setup(FlutterBookApiHandler(
// The `FlutterBookApi` just has one method. Just give a closure for that
// method to the handler class.
(Book book) {
(book) {
setState(() {
// This book model is what we're going to return to Kotlin eventually.
// Keep it bound to the UI.
@ -107,9 +109,9 @@ class _BookDetailState extends State<BookDetail> {
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Book Details'),
title: const Text('Book Details'),
leading: IconButton(
icon: Icon(Icons.clear),
icon: const Icon(Icons.clear),
// Pressing clear cancels the edit and leaves the activity without
// modification.
onPressed: () {
@ -119,7 +121,7 @@ class _BookDetailState extends State<BookDetail> {
),
actions: [
IconButton(
icon: Icon(Icons.check),
icon: const Icon(Icons.check),
// Pressing save sends the updated book to the platform.
onPressed: () {
hostApi.finishEditingBook(book);
@ -131,44 +133,44 @@ class _BookDetailState extends State<BookDetail> {
body: book == null
// Draw a spinner until the platform gives us the book to show details
// for.
? Center(child: CircularProgressIndicator())
? const Center(child: CircularProgressIndicator())
: Focus(
focusNode: textFocusNode,
child: ListView(
padding: EdgeInsets.all(24),
padding: const EdgeInsets.all(24),
children: [
TextField(
controller: titleTextController,
decoration: InputDecoration(
decoration: const InputDecoration(
border: OutlineInputBorder(),
filled: true,
hintText: "Title",
labelText: "Title",
),
),
SizedBox(height: 24),
const SizedBox(height: 24),
TextField(
controller: subtitleTextController,
maxLines: 2,
decoration: InputDecoration(
decoration: const InputDecoration(
border: OutlineInputBorder(),
filled: true,
hintText: "Subtitle",
labelText: "Subtitle",
),
),
SizedBox(height: 24),
const SizedBox(height: 24),
TextField(
controller: authorTextController,
decoration: InputDecoration(
decoration: const InputDecoration(
border: OutlineInputBorder(),
filled: true,
hintText: "Author",
labelText: "Author",
),
),
SizedBox(height: 32),
Divider(),
const SizedBox(height: 32),
const Divider(),
Center(
child: Padding(
padding: const EdgeInsets.all(8.0),
@ -176,9 +178,9 @@ class _BookDetailState extends State<BookDetail> {
'${book.pageCount} pages ~ published ${book.publishDate}'),
),
),
Divider(),
SizedBox(height: 32),
Center(
const Divider(),
const SizedBox(height: 32),
const Center(
child: Text(
'BOOK DESCRIPTION',
style: TextStyle(
@ -188,7 +190,7 @@ class _BookDetailState extends State<BookDetail> {
),
),
),
SizedBox(height: 12),
const SizedBox(height: 12),
Text(
book.summary,
style: TextStyle(color: Colors.grey.shade600, height: 1.24),

@ -62,11 +62,25 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_lints:
dependency: "direct dev"
description:
name: flutter_lints
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
flutter_test:
dependency: "direct dev"
description: flutter
source: sdk
version: "0.0.0"
lints:
dependency: transitive
description:
name: lints
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
matcher:
dependency: transitive
description:

@ -17,6 +17,7 @@ dev_dependencies:
mockito: ^4.1.1
flutter_test:
sdk: flutter
flutter_lints: ^1.0.0
flutter:
uses-material-design: true

@ -9,8 +9,7 @@ import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
void main() {
testWidgets('Pressing clear calls the cancel API',
(WidgetTester tester) async {
testWidgets('Pressing clear calls the cancel API', (tester) async {
MockHostBookApi mockHostApi = MockHostBookApi();
await tester.pumpWidget(
@ -24,8 +23,7 @@ void main() {
verify(mockHostApi.cancel());
});
testWidgets('Pressing done calls the finish editing API',
(WidgetTester tester) async {
testWidgets('Pressing done calls the finish editing API', (tester) async {
MockHostBookApi mockHostApi = MockHostBookApi();
await tester.pumpWidget(

Loading…
Cancel
Save