20 lines
376 B
Dart
20 lines
376 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ElevatedCard extends StatelessWidget {
|
|
final Widget? _child;
|
|
const ElevatedCard(this._child, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Center(
|
|
child: Card(
|
|
child: SizedBox(
|
|
width: 300,
|
|
height: 100,
|
|
child: _child,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|