17 lines
335 B
Dart
17 lines
335 B
Dart
import 'package:auto_route/annotations.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class DetailPage extends StatelessWidget {
|
|
const DetailPage({
|
|
Key? key,
|
|
@PathParam('id') required this.id,
|
|
}) : super(key: key);
|
|
|
|
final int id;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Text(id.toString());
|
|
}
|
|
}
|