mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
// 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}');
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|