12 lines
195 B
Dart
12 lines
195 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DetailsScreen {
|
|
const DetailsScreen({
|
|
this.appBar,
|
|
@required this.body,
|
|
});
|
|
|
|
final Widget body;
|
|
final PreferredSizeWidget appBar;
|
|
}
|