mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 22:09:06 +00:00
Fail early on nullable context objects - no code paths allow null Eliminate superfluous private function Use a function over an abstract class with one method
40 lines
1.0 KiB
Dart
40 lines
1.0 KiB
Dart
// Copyright 2021, the Flutter project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import '../data.dart';
|
|
import '../routing.dart';
|
|
import '../widgets/book_list.dart';
|
|
|
|
class AuthorDetailsScreen extends StatelessWidget {
|
|
final Author author;
|
|
|
|
const AuthorDetailsScreen({
|
|
Key? key,
|
|
required this.author,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) => Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(author.name),
|
|
),
|
|
body: Center(
|
|
child: Column(
|
|
children: [
|
|
Expanded(
|
|
child: BookList(
|
|
books: author.books,
|
|
onTap: (book) {
|
|
RouteStateScope.of(context).go('/book/${book.id}');
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|